1 #ifndef EVENT_DISPLAY_CREATOR_H
2 #define EVENT_DISPLAY_CREATOR_H
8 #include <EVENT/Track.h>
9 #include <IMPL/LCCollectionVec.h>
10 #include <EVENT/TrackerHit.h>
11 #include <EVENT/TrackerData.h>
12 #include <marlin/Exceptions.h>
52 TimePixEventDisplayCreator(
double inXMin,
double inXMax,
double inYMin,
double inYMax,
double inZMin,
double inZMax,
int InXPixel,
int InYPixel);
54 TH2F *GetTH2F_TracksXY(IMPL::LCCollectionVec* inputColVec,
unsigned int EventNr,
unsigned int RunNr,
unsigned int showcharge);
55 TH2F *GetTH2F_TracksZX(IMPL::LCCollectionVec* inputColVec,
unsigned int EventNr,
unsigned int RunNr);
56 TH2F *GetTH2F_TracksZY(IMPL::LCCollectionVec* inputColVec,
unsigned int EventNr,
unsigned int RunNr);
61 double _xMin, _xMax, _yMin, _yMax, _zMin, _zMax;
62 unsigned int _xPixel, _yPixel;
70 #endif // EVENT_DISPLAY_CREATOR_H
The EVENT_DISPLAY_CREATOR is a class that allows to instantiate an EVENT_DISPLAY_CREATOR object ina a...
Definition: TimePixEventDisplayCreator.h:48