1 | #ifndef MARS_MPhotonEvent
|
---|
2 | #define MARS_MPhotonEvent
|
---|
3 |
|
---|
4 | #ifndef MARS_MParContainer
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef ROOT_TClonesArray
|
---|
9 | #include <TClonesArray.h>
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | #include <iosfwd>
|
---|
13 | #include <iostream>
|
---|
14 |
|
---|
15 | using namespace std;
|
---|
16 |
|
---|
17 | class MPhotonData;
|
---|
18 | class MCorsikaRunHeader;
|
---|
19 | class MCorsikaFormat;
|
---|
20 |
|
---|
21 | class MPhotonEvent : public MParContainer
|
---|
22 | {
|
---|
23 | private:
|
---|
24 | TClonesArray fData;
|
---|
25 |
|
---|
26 | public:
|
---|
27 | MPhotonEvent(const char *name=NULL, const char *title=NULL);
|
---|
28 |
|
---|
29 | void Sort(Bool_t force=kFALSE);
|
---|
30 | Bool_t IsSorted() const { return fData.IsSorted(); }
|
---|
31 |
|
---|
32 | // Getter/Setter
|
---|
33 | Int_t GetNumPhotons() const { return fData.GetEntriesFast(); }
|
---|
34 | Int_t GetNumExternal() const;
|
---|
35 |
|
---|
36 | Float_t GetTimeFirst() const;
|
---|
37 | Float_t GetTimeLast() const;
|
---|
38 | Double_t GetTimeMedianDev() const;
|
---|
39 |
|
---|
40 | Double_t GetMeanX() const;
|
---|
41 | Double_t GetMeanY() const;
|
---|
42 | Double_t GetMeanT() const;
|
---|
43 |
|
---|
44 | TClonesArray &GetArray() { return fData; }
|
---|
45 | const TClonesArray &GetArray() const { return fData; }
|
---|
46 |
|
---|
47 | MPhotonData &Add(Int_t n);
|
---|
48 | MPhotonData &Add();
|
---|
49 |
|
---|
50 | MPhotonData *GetFirst() const;
|
---|
51 | MPhotonData *GetLast() const;
|
---|
52 |
|
---|
53 | MPhotonData &operator[](UInt_t idx);
|
---|
54 | const MPhotonData &operator[](UInt_t idx) const;
|
---|
55 |
|
---|
56 | Int_t Shrink(Int_t n);
|
---|
57 | void Resize(Int_t n);
|
---|
58 |
|
---|
59 | void AddXY(Double_t x, Double_t y);
|
---|
60 | void SimWavelength(Float_t wmin, Float_t wmax);
|
---|
61 |
|
---|
62 | // I/O
|
---|
63 | Int_t ReadEventIoEvt(MCorsikaFormat *fInFormat);
|
---|
64 | Int_t ReadCorsikaEvt(Float_t * data, Int_t numEvents, Int_t arrayIdx);
|
---|
65 |
|
---|
66 | // TObject
|
---|
67 | void Paint(Option_t *o="");
|
---|
68 | void Print(Option_t * = NULL) const;
|
---|
69 | //void Clear(Option_t * = NULL);
|
---|
70 |
|
---|
71 | void Reset();
|
---|
72 | //void Reset(){std::cout << "Reset!!"; this->Clear(); this->Resize(0); }
|
---|
73 |
|
---|
74 | ClassDef(MPhotonEvent, 1) //Container to store the raw Event Data
|
---|
75 | };
|
---|
76 |
|
---|
77 | // FIXME: Should we merge this into MPhotonEvent?
|
---|
78 | class MPhotonStatistics : public MParContainer
|
---|
79 | {
|
---|
80 | private:
|
---|
81 | Float_t fTimeFirst; //! Start of (simulated) sampling window
|
---|
82 | Float_t fTimeLast; //! Start of (simulated) sampling window
|
---|
83 |
|
---|
84 | Float_t fLength; // Time between first and last photon
|
---|
85 | Float_t fTimeMedDev; // Median deviation
|
---|
86 |
|
---|
87 | // Float_t fOffset;
|
---|
88 | // Float_t fWindow;
|
---|
89 |
|
---|
90 | Int_t fMaxIndex; //!
|
---|
91 |
|
---|
92 | public:
|
---|
93 | MPhotonStatistics(const char *name=NULL, const char *title=NULL) : fMaxIndex(-1)
|
---|
94 | {
|
---|
95 | fName = name ? name : "MPhotonStatistics";
|
---|
96 | fTitle = title ? title : "Corsika Event Data Information";
|
---|
97 | }
|
---|
98 |
|
---|
99 | void SetTime(Float_t first, Float_t last) { fTimeFirst=first; fTimeLast=last; }
|
---|
100 | void SetLength(Float_t len) { fLength=len; }
|
---|
101 | void SetMaxIndex(UInt_t idx) { fMaxIndex=idx; }
|
---|
102 | void SetTimeMedDev(Float_t dev) { fTimeMedDev=dev; }
|
---|
103 |
|
---|
104 | // Float_t GetRawTimeFirst() const { return fTimeFirst; }
|
---|
105 | // Float_t GetRawTimeLast() const { return fTimeLast; }
|
---|
106 |
|
---|
107 | Float_t GetTimeFirst() const { return fTimeFirst; }
|
---|
108 | Float_t GetTimeLast() const { return fTimeLast; }
|
---|
109 |
|
---|
110 | Float_t GetLength() const { return fLength; }
|
---|
111 | Float_t GetTimeMedDev() const { return fTimeMedDev; }
|
---|
112 |
|
---|
113 | Int_t GetMaxIndex() const { return fMaxIndex; }
|
---|
114 |
|
---|
115 | // Bool_t IsValid() const { return fTimeLast>=fTimeFirst; }
|
---|
116 |
|
---|
117 | ClassDef(MPhotonStatistics, 1)
|
---|
118 | };
|
---|
119 | #endif
|
---|