Jpp test-rotations-old
the software that should make you happy
Loading...
Searching...
No Matches
JShowerNPE.cc File Reference

Program to evaluate hit probabilities. More...

#include <string>
#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include "JDAQ/JDAQEventIO.hh"
#include "JDAQ/JDAQSummarysliceIO.hh"
#include "JDetector/JDetector.hh"
#include "JDetector/JDetectorToolkit.hh"
#include "JDetector/JModuleRouter.hh"
#include "JTrigger/JHitL0.hh"
#include "JTrigger/JBuildL0.hh"
#include "JSupport/JSupport.hh"
#include "JSupport/JParallelFileScanner.hh"
#include "JSupport/JSummaryFileRouter.hh"
#include "JPhysics/JNPE_t.hh"
#include "JPhysics/JPDF_t.hh"
#include "JFit/JPoint4D.hh"
#include "JFit/JModel.hh"
#include "JFit/JFitToolkit.hh"
#include "JReconstruction/JHitW0.hh"
#include "JReconstruction/JEvt.hh"
#include "JReconstruction/JEvtToolkit.hh"
#include "JReconstruction/JShowerFitParameters_t.hh"
#include "Jeep/JPrint.hh"
#include "Jeep/JParser.hh"
#include "Jeep/JMessage.hh"
#include "JTools/JResult.hh"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Detailed Description

Program to evaluate hit probabilities.

Author
mdejong and adomi

Definition in file JReconstruction/JShowerNPE.cc.

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 75 of file JReconstruction/JShowerNPE.cc.

76{
77 using namespace std;
78 using namespace JPP;
79 using namespace KM3NETDAQ;
80
81 typedef JParallelFileScanner< JTypeList<JDAQEvent, JEvt> > JParallelFileScanner_t;
82 typedef JParallelFileScanner_t::multi_pointer_type multi_pointer_type;
83
84 JParallelFileScanner_t inputFile;
85 JLimit_t& numberOfEvents = inputFile.getLimit();
86 string detectorFile;
87 string pdfFile;
88 JShowerFitParameters_t parameters;
89 int debug;
90
91 try {
92
93 parameters.numberOfPrefits = 1;
94
95 JParser<> zap("Program to evaluate hit probabilities.");
96
97 zap['f'] = make_field(inputFile);
98 zap['a'] = make_field(detectorFile);
99 zap['n'] = make_field(numberOfEvents) = JLimit::max();
100 zap['P'] = make_field(pdfFile);
101 zap['@'] = make_field(parameters) = JPARSER::initialised();
102 zap['d'] = make_field(debug) = 1;
103
104 zap(argc, argv);
105 }
106 catch(const exception& error) {
107 FATAL(error.what() << endl);
108 }
109
110 //setDAQLongprint(debug >= JEEP::debug_t);
111
112
113 if (parameters.numberOfPrefits != 1) {
114 WARNING("Number of prefits " << parameters.numberOfPrefits << " != " << 1 << endl);
115 }
116
118
119 try {
120 load(detectorFile, detector);
121 }
122 catch(const JException& error) {
123 FATAL(error);
124 }
125
126 const JModuleRouter router(detector);
127
128 JSummaryFileRouter summary(inputFile);
129
130 const JShowerNPE_t npe(pdfFile);
131
132 const JTimeRange T_ns(parameters.TMin_ns, parameters.TMax_ns);
133
134 typedef vector<JHitL0> JDataL0_t;
135 typedef vector<JHitW0> JDataW0_t;
136
137 const JBuildL0<JHitL0> buildL0;
138
139 while (inputFile.hasNext()) {
140
141 STATUS("event: " << setw(10) << inputFile.getCounter() << '\r'); DEBUG(endl);
142
143 multi_pointer_type ps = inputFile.next();
144
145 JDAQEvent* tev = ps;
146 JEvt* in = ps;
147
148 DEBUG("event: " << *tev << endl);
149
150 summary.update(*tev);
151
152 in->select(parameters.numberOfPrefits, qualitySorter);
153
154 JDataL0_t dataL0;
155
156 buildL0(*tev, router, true, back_inserter(dataL0));
157
158 for (JEvt::const_iterator shower = in->begin(); shower != in->end(); ++shower) {
159
160 DEBUG("shower: " << *shower << endl);
161
162 JRotation3D R (getDirection(*shower));
163 JPoint4D vx(getPosition(*shower).rotate(R), shower->getT());
164
165 const JModel<JPoint4D> match(vx, parameters.DMax_m, T_ns);
166
167 // hit selection based on start value
168
169 JDataW0_t data;
170
171 for (JDataL0_t::const_iterator i = dataL0.begin(); i != dataL0.end(); ++i) {
172
173 JHitW0 hit(*i, summary.getRate(*i, parameters.R_Hz));
174
175 hit.rotate(R);
176
177 if (match(hit)) {
178 data.push_back(hit);
179 }
180 }
181
182 // select first hit in PMT
183
184 sort(data.begin(), data.end(), compare);
185
186 JDataW0_t::iterator __end = unique(data.begin(), data.end(), equal_to<JDAQPMTIdentifier>());
187
188 DEBUG("point4d: "
189 << FIXED(12,3) << vx.getX() << ' '
190 << FIXED(12,3) << vx.getY() << ' '
191 << FIXED(12,3) << vx.getZ() << ' '
192 << FIXED(12,3) << vx.getT() << ' '
193 << FIXED( 8,3) << shower->getQ() << endl);
194
195 double Q = 0.0;
196
197 for (JDataW0_t::const_iterator hit = data.begin(); hit != __end; ++hit) {
198
199 JPosition3D D(hit->getPosition());
200 D.sub(vx);
201
202 const double x = hit->getX() - vx.getX();
203 const double y = hit->getY() - vx.getY();
204 const double z = hit->getZ() - vx.getZ();
205 const double cd = z/D.getLength(); // Delta = angle between shower direction and PMT position
206
207 const double t1 = vx.getT() + (D.getLength() * getIndexOfRefraction() * getInverseSpeedOfLight());
208
209 JDirection3D u(hit->getDX(), hit->getDY(), hit->getDZ()); // PMT orientation
210
211 u.rotate(JRotation3Z(-atan2(y,x))); // rotate PMT axis to x-z plane
212
213 const double theta = u.getTheta();
214 const double phi = fabs(u.getPhi()); // rotational symmetry of Cherenkov cone
215
216 const double E = shower->getE();
217 const double dt = T_ns.constrain(hit->getT() - t1);
218
219 double H1 = npe.calculate(E, D.getLength(), cd, theta, phi);
220 double H0 = hit->getR() * 1e-9 * T_ns.getLength();
221
222 double Vmax_npe = 20.0;
223 if (H1 >= Vmax_npe) {
224 H1 *= Vmax_npe / H1;
225 }
226
227 H1 += H0; // signal + background
228
229 const double chi2 = getChi2(H1, true); // -log(lik)
230
231 DEBUG("hit: "
232 << setw(10) << hit->getModuleID() << ':' << setw( 2) << setfill('0') << hit->getPMTAddress() << setfill(' ') << ' '
233 << FIXED(12,1) << E << ' '
234 << FIXED( 9,1) << R << ' '
235 << FIXED( 6,4) << theta << ' '
236 << FIXED( 6,4) << phi << ' '
237 << FIXED( 8,3) << dt << ' '
238 << FIXED(12,3) << chi2 << endl);
239
240 Q += getQuality(chi2);
241 }
242
243 DEBUG("quality: " << FIXED(8,3) << Q << ' ' << distance(data.begin(), __end) << endl);
244 }
245 }
246 STATUS(endl);
247}
#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:72
#define WARNING(A)
Definition JMessage.hh:65
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Definition JParser.hh:2142
std::vector< T >::difference_type distance(typename std::vector< T >::const_iterator first, typename PhysicsEvent::const_iterator< T > second)
Specialisation of STL distance.
Detector data structure.
Definition JDetector.hh:96
Router for direct addressing of module data in detector data structure.
Data structure for vertex fit.
Definition JPoint4D.hh:24
Data structure for direction in three dimensions.
Data structure for position in three dimensions.
JPosition3D & rotate(const JRotation3D &R)
Rotate.
Rotation around Z-axis.
General exception.
Definition JException.hh:24
Utility class to parse command line options.
Definition JParser.hh:1698
Auxiliary class for a hit with background rate value.
Definition JHitW0.hh:23
General purpose class for parallel reading of objects from a single file or multiple files.
File router for fast addressing of summary data.
Template L0 hit builder.
Definition JBuildL0.hh:38
JDirection3D getDirection(const Vec &dir)
Get direction.
JPosition3D getPosition(const Vec &pos)
Get position.
double getQuality(const JEvent &evt)
Get average quality.
void load(const std::string &file_name, JDetector &detector)
Load detector from input file.
double getChi2(const double P)
Get chi2 corresponding to given probability.
double getIndexOfRefraction()
Get average index of refraction of water corresponding to group velocity.
const double getInverseSpeedOfLight()
Get inverse speed of light.
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
Auxiliary data structure for floating point format specification.
Definition JManip.hh:448
Detector file.
Definition JHead.hh:227
Acoustic event fit.
Model for fit to acoustics data.
Empty structure for specification of parser element that is initialised (i.e. does not require input)...
Definition JParser.hh:68
Data structure for fit parameters.
double DMax_m
maximal distance to optical module [m]
double TMax_ns
maximum time for local coincidences [ns]
double TMin_ns
minimum time for local coincidences [ns]
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 data structure for shower PDF.
Definition JNPE_t.hh:175