Jpp  19.1.0
the software that should make you happy
JShowerPointSimplex.cc
Go to the documentation of this file.
1 #include <string>
2 #include <limits>
3 
7 
8 #include "JDAQ/JDAQEventIO.hh"
11 
13 
17 
18 #include "JDynamics/JDynamics.hh"
19 
21 #include "JSupport/JSupport.hh"
23 #include "JSupport/JMeta.hh"
24 #include "JSupport/JTreeScanner.hh"
25 
26 #include "Jeep/JParser.hh"
27 #include "Jeep/JMessage.hh"
28 
29 #include "JReconstruction/JEvt.hh"
32 
33 #include "JLang/JSharedPointer.hh"
34 
35 
36 /**
37  * \file
38  *
39  * Program to perform EM Shower Fit for ORCA with I/O of JFIT::JEvt data.
40  * The reconstruction is made at the PMT level.
41  * \author adomi
42  */
43 
44 int main(int argc, char** argv){
45 
46  using namespace std;
47  using namespace JPP;
48  using namespace KM3NETDAQ;
49 
51  typedef JParallelFileScanner< JTypeList<JDAQEvent, JFIT::JEvt> > JParallelFileScanner_t;
52  typedef JParallelFileScanner_t::multi_pointer_type multi_pointer_type;
54  JACOUSTICS::JEvt>::typelist calibration_types;
55  typedef JMultipleFileScanner<calibration_types> JCalibration_t;
56 
57 
58  JParallelFileScanner_t inputFile;
61  JLimit_t& numberOfEvents = inputFile.getLimit();
62  string detectorFile;
63  JCalibration_t calibrationFile;
64  double Tmax_s;
65  int debug;
66 
67  try {
68 
69  JParser<> zap;
70 
71  zap['f'] = make_field(inputFile) ;
72  zap['o'] = make_field(outputFile) = "JORCAShowerPointSimplex_Output.root";
73  zap['a'] = make_field(detectorFile) ;
74  zap['+'] = make_field(calibrationFile) = JPARSER::initialised();
75  zap['@'] = make_field(parameters) = JPARSER::initialised();
76  zap['T'] = make_field(Tmax_s) = 100.0;
77  zap['n'] = make_field(numberOfEvents) = JLimit::max();
78  zap['d'] = make_field(debug) = 2;
79 
80  zap(argc, argv);
81  }
82  catch(const exception& error) {
83  FATAL(error.what() << endl);
84  }
85 
87 
88  try {
89  load(detectorFile, detector);
90  }
91  catch(const JException& error) {
92  FATAL(error);
93  }
94 
95  unique_ptr<JDynamics> dynamics;
96 
97  try {
98 
99  dynamics.reset(new JDynamics(detector, Tmax_s));
100 
101  dynamics->load(calibrationFile);
102  }
103  catch(const exception& error) {
104  if (!calibrationFile.empty()) {
105  FATAL(error.what());
106  }
107  }
108 
109  const JModuleRouter router(dynamics ? dynamics->getDetector() : detector);
110 
111  JShowerPointSimplex fit(parameters, router, debug);
112 
113  outputFile.open();
114  outputFile.put(JMeta(argc, argv));
115 
116  while (inputFile.hasNext()) {
117 
118  STATUS("event: " << setw(10) << inputFile.getCounter() << '\r'); DEBUG(endl);
119 
120  multi_pointer_type ps = inputFile.next();
121 
122  const JDAQEvent* tev = ps;
123  const JFIT::JEvt* in = ps;
124 
125  if (dynamics) {
126  dynamics->update(*tev);
127  }
128 
129  // select start values
130  JFIT::JEvt cp = *in;
131 
132  cp.select(parameters.numberOfPrefits, qualitySorter);
133 
134  if (!cp.empty()) {
135  cp.select(JHistory::is_event(cp.begin()->getHistory()));
136  }
137 
138  // fit
139 
140  JFIT::JEvt out = fit(*tev, cp);
141 
142  if (dynamics) {
143 
144  const JDynamics::coverage_type coverage = dynamics->getCoverage();
145 
146  for (JFIT::JEvt::iterator i = out.begin(); i != out.end(); ++i) {
147  i->setW(JPP_COVERAGE_ORIENTATION, coverage.orientation);
148  i->setW(JPP_COVERAGE_POSITION, coverage.position);
149  }
150  }
151 
152  // apply default sorter
153 
154  sort(out.begin(), out.end(), qualitySorter);
155 
156  copy(in->begin(), in->end(), back_inserter(out));
157 
158  outputFile.put(out);
159 
160  }
161  STATUS(endl);
162 
164 
165  io >> outputFile;
166 
167  outputFile.close();
168 }
string outputFile
Dynamic detector calibration.
Recording of objects on file according a format that follows from the file name extension.
General purpose messaging.
#define DEBUG(A)
Message macros.
Definition: JMessage.hh:62
#define STATUS(A)
Definition: JMessage.hh:63
#define FATAL(A)
Definition: JMessage.hh:67
int debug
debug level
Definition: JSirene.cc:69
ROOT I/O of application specific meta data.
Direct access to module in detector data structure.
Parallel scanning of objects from a single file or multiple files according a format that follows fro...
Utility class to parse command line options.
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition: JParser.hh:2142
int main(int argc, char **argv)
ROOT TTree parameter settings of various packages.
Detector data structure.
Definition: JDetector.hh:96
Router for direct addressing of module data in detector data structure.
Data structure for set of track fit results.
void select(const JSelector_t &selector)
Select fits.
General exception.
Definition: JException.hh:24
Utility class to parse command line options.
Definition: JParser.hh:1698
class to handle the second position fit of the shower reconstruction, mainly dedicated for ORCA
Object writing to file.
General purpose class for object reading from a list of file names.
General purpose class for parallel reading of objects from a single file or multiple files.
Object reading from a list of files.
static const int JPP_COVERAGE_POSITION
coverage of dynamic position calibration from any Jpp application
static const int JPP_COVERAGE_ORIENTATION
coverage of dynamic orientation calibration from any Jpp application
void copy(const Head &from, JHead &to)
Copy header from from to to.
Definition: JHead.cc:162
void load(const std::string &file_name, JDetector &detector)
Load detector from input file.
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
bool qualitySorter(const JFit &first, const JFit &second)
Comparison of fit results.
KM3NeT DAQ data structures and auxiliaries.
Definition: DataQueue.cc:39
Definition: JSTDTypes.hh:14
Detector file.
Definition: JHead.hh:227
Acoustic event fit.
Orientation of module.
Data structure for coverage of dynamic calibrations.
Definition: JDynamics.hh:573
double position
coverage of detector by available position calibration [0,1]
Definition: JDynamics.hh:575
double orientation
coverage of detector by available orientation calibration [0,1]
Definition: JDynamics.hh:574
Dynamic detector calibration.
Definition: JDynamics.hh:84
Auxiliary class to test history.
Definition: JHistory.hh:105
Auxiliary class for recursive type list generation.
Definition: JTypeList.hh:351
Type list.
Definition: JTypeList.hh:23
Empty structure for specification of parser element that is initialised (i.e. does not require input)...
Definition: JParser.hh:68
Auxiliary class for defining the range of iterations of objects.
Definition: JLimit.hh:45
const JLimit & getLimit() const
Get limit.
Definition: JLimit.hh:84
Auxiliary class for ROOT I/O of application specific meta data.
Definition: JMeta.hh:72