Jpp  16.0.1
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Functions
JOmega2D.cc File Reference

Example program to test JGEOMETRY2D::JOmega2D class. More...

#include <string>
#include <iostream>
#include <iomanip>
#include <cmath>
#include "TROOT.h"
#include "TFile.h"
#include "TH1D.h"
#include "TRandom3.h"
#include "JMath/JConstants.hh"
#include "JTools/JQuantile.hh"
#include "JTools/JRange.hh"
#include "JROOT/JRootToolkit.hh"
#include "JGeometry2D/JOmega2D.hh"
#include "Jeep/JParser.hh"
#include "Jeep/JMessage.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Example program to test JGEOMETRY2D::JOmega2D class.

Author
mdejong

Definition in file JOmega2D.cc.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 29 of file JOmega2D.cc.

30 {
31  using namespace std;
32  using namespace JPP;
33 
34  string outputFile;
35  int numberOfEvents;
36  JRange<double> range_Deg;
37  int debug;
38 
39  try {
40 
41  JParser<> zap("Example program to test JOmega2D class.");
42 
43  zap['o'] = make_field(outputFile) = "";
44  zap['n'] = make_field(numberOfEvents) = 1000;
45  zap['G'] = make_field(range_Deg) = JRange<double>(0.5, 10.5);
46  zap['d'] = make_field(debug) = 3;
47 
48  zap(argc, argv);
49  }
50  catch(const exception &error) {
51  FATAL(error.what() << endl);
52  }
53 
54 
55  const int N = 10;
56 
57  TH1D h0("h0[grid", NULL, N, range_Deg.getLowerLimit(), range_Deg.getUpperLimit());
58  TH1D h1("h1[RMS]", NULL, N, range_Deg.getLowerLimit(), range_Deg.getUpperLimit());
59  TH1D h2("h2[deviation]", NULL, N, range_Deg.getLowerLimit(), range_Deg.getUpperLimit());
60 
61 
62  vector<JOmega2D> omega;
63  vector<JQuantile> quantile;
64 
65  for (int i = 1; i <= h0.GetNbinsX(); ++i) {
66 
67  const Double_t x = h0.GetBinCenter(i);
68 
69  omega .push_back(JOmega2D(x * PI/180.0));
70  quantile.push_back(JQuantile());
71  }
72 
73 
74  for (int i = 0; i != numberOfEvents; ++i) {
75 
76  STATUS("event: " << setw(10) << i << '\r'); DEBUG(endl);
77 
78  const double phi = gRandom->Uniform(0.0, 2*PI);
79 
80  const JAngle2D angle(phi);
81 
82  for (size_t j = 0; j != omega.size(); ++j) {
83 
84  const int pos = omega[j].find(angle);
85  const double dot = angle.getDot(omega[j][pos]);
86 
87  quantile[j].put(acos(dot) * 180.0/PI);
88  }
89  }
90  STATUS(endl);
91 
92 
93  for (int i = 1; i <= h0.GetNbinsX(); ++i) {
94  h0.SetBinContent(i, omega [i-1].size());
95  h1.SetBinContent(i, quantile[i-1].getSTDev());
96  h2.SetBinContent(i, quantile[i-1].getDeviation());
97  }
98 
99  if (outputFile != "") {
100 
101  TFile out(outputFile.c_str(), "recreate");
102 
103  out << h0 << h1 << h2;
104 
105  out.Write();
106  out.Close();
107  }
108 
109  for (int i = 1; i <= h2.GetNbinsX(); ++i) {
110 
111  const Double_t x = h2.GetBinCenter (i);
112  const Double_t y = h2.GetBinContent(i);
113 
114  NOTICE("Grid test " << x << " [deg]: " << y << " [deg]." << endl);
115  ASSERT(y < x / 2.0);
116  }
117 
118  return 0;
119 }
Utility class to parse command line options.
Definition: JParser.hh:1500
#define STATUS(A)
Definition: JMessage.hh:63
then JShowerPostfit f $INPUT_FILE o $OUTPUT_FILE N
then for HISTOGRAM in h0 h1
Definition: JMatrixNZ.sh:71
string outputFile
#define ASSERT(A,...)
Assert macro.
Definition: JMessage.hh:90
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition: JParser.hh:1961
#define NOTICE(A)
Definition: JMessage.hh:64
static const double PI
Mathematical constants.
int debug
debug level
Definition: JSirene.cc:63
#define FATAL(A)
Definition: JMessage.hh:67
then usage $script< input_file >< detector_file > fi set_variable OUTPUT_DIR set_variable SELECTOR JDAQTimesliceL1 set_variable DEBUG case set_variable DEBUG
int j
Definition: JPolint.hh:682