Jpp 20.0.0-195-g190c9e876
the software that should make you happy
Loading...
Searching...
No Matches
JShowerDirectionPrefit.cc File Reference

Program to perform EM Shower Fit for ORCA with I/O of JFIT::JEvt data. More...

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Program to perform EM Shower Fit for ORCA with I/O of JFIT::JEvt data.

The reconstruction is made at the PMT level.

Author
adomi

Definition in file JShowerDirectionPrefit.cc.

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 46 of file JShowerDirectionPrefit.cc.

46 {
47
48 using namespace std;
49 using namespace JPP;
50 using namespace KM3NETDAQ;
51
53 typedef JParallelFileScanner< JTypeList<JDAQEvent, JFIT::JEvt> > JParallelFileScanner_t;
54 typedef JParallelFileScanner_t::multi_pointer_type multi_pointer_type;
55 typedef JMultipleFileScanner<calibration_types> JCalibration_t;
56
57 JParallelFileScanner_t inputFile;
59 JLimit_t& numberOfEvents = inputFile.getLimit();
60 string detectorFile;
61 JCalibration_t calibrationFile;
62 double Tmax_s;
63 string pdfFile;
65 JPMTParametersMap pmtParameters;
66 size_t threads;
67 int debug;
68
69 try {
70
71 JParser<> zap;
72
73 zap['f'] = make_field(inputFile);
74 zap['o'] = make_field(outputFile);
75 zap['n'] = make_field(numberOfEvents) = JLimit::max();
76 zap['a'] = make_field(detectorFile);
77 zap['+'] = make_field(calibrationFile, "dynamical calibration data") = JPARSER::initialised();
78 zap['T'] = make_field(Tmax_s, "dynamical update time [s]") = 100.0;
79 zap['F'] = make_field(pdfFile, "PDFs");
80 zap['@'] = make_field(parameters, "fit parameters") = JPARSER::initialised();
81 zap['P'] = make_field(pmtParameters, "PMT parameters") = JPARSER::initialised();
82 zap['N'] = make_field(threads, "number of threads") = 0;
83 zap['d'] = make_field(debug) = 1;
84
85 zap(argc, argv);
86 }
87 catch(const exception& error) {
88 FATAL(error.what() << endl);
89 }
90
91
93
95
96 try {
97 load(detectorFile, detector);
98 }
99 catch(const JException& error) {
100 FATAL(error);
101 }
102
103 unique_ptr<JDynamics> dynamics;
104
105 if (!calibrationFile.empty()) {
106
107 try {
108
109 dynamics.reset(new JDynamics(detector, Tmax_s));
110
111 dynamics->load(calibrationFile);
112 }
113 catch(const exception& error) {
114 FATAL(error.what());
115 }
116 }
117
118 const JModuleRouter router(dynamics ? dynamics->getDetector() : detector);
119
120 JSummaryFileRouter summary(inputFile);
121
122
123 outputFile.open();
124 outputFile.put(JMeta(argc, argv));
125
126 {
127 const JShowerDirectionPrefit::storage_type storage(pdfFile, JTimeRange(parameters.TMin_ns, parameters.TMax_ns));
128
129 JShowerDirectionPrefit fit(parameters, storage, pmtParameters, debug);
130
132
133 while (inputFile.hasNext()) {
134
135 STATUS("event: " << setw(10) << inputFile.getCounter() << '\r'); DEBUG(endl);
136
137 multi_pointer_type ps = inputFile.next();
138
139 JDAQEvent* tev = ps;
140 JFIT::JEvt* in = ps;
141
142 summary.update(*tev);
143
144 if (dynamics) {
145 dynamics->update(*tev);
146 }
147
148 auto input = fit.getInput(router, summary, *tev, *in, dynamics ? dynamics->getCoverage() : coverage_type());
149
150 if (threads > 0)
151 fits.enqueue(input);
152 else
153 outputFile.put(fit(input));
154 }
155 STATUS(endl);
156 }
157
159
160 io >> outputFile;
161
162 outputFile.close();
163}
string outputFile
#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:74
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition JParser.hh:2142
Detector data structure.
Definition JDetector.hh:96
Router for direct addressing of module data in detector data structure.
Auxiliary class for map of PMT parameters.
Data structure for set of track fit results.
General exception.
Definition JException.hh:24
Utility class to parse command line options.
Definition JParser.hh:1698
Thread pool for event-by-event reconstruction.
class to handle the direction fit of the shower reconstruction, mainly dedicated for ORCA
void setSplitLevel(int value)
Set split level.
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.
File router for fast addressing of summary data.
JTOOLS::JRange< double > JTimeRange
Type definition for time range (unit [s]).
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).
JTreeParameters & getTreeParameters()
Template definition for method returning TTree parameters.
KM3NeT DAQ data structures and auxiliaries.
Definition DataQueue.cc:39
Detector file.
Definition JHead.hh:227
Dynamic detector calibration.
Definition JDynamics.hh:81
Data structure for coverage of detector by dynamical calibrations.
Definition JCoverage.hh:19
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
static counter_type max()
Get maximum counter value.
Definition JLimit.hh:128
Auxiliary class for ROOT I/O of application specific meta data.
Definition JMeta.hh:72