Changeset 9342 for trunk/MagicSoft/Mars/msim/MPhotonEvent.h
- Timestamp:
- 02/15/09 15:52:47 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/msim/MPhotonEvent.h
r9308 r9342 80 80 Int_t GetNumExternal() const; 81 81 82 Float_t GetTimeFirst() const; 83 Float_t GetTimeLast() const; 84 Double_t GetTimeMedianDev() const; 85 82 86 TClonesArray &GetArray() { return fData; } 83 87 const TClonesArray &GetArray() const { return fData; } … … 131 135 { 132 136 private: 133 Float_t fTimeFirst; 134 Float_t fTimeLast; 137 Float_t fTimeFirst; //! Start of (simulated) sampling window 138 Float_t fTimeLast; //! Start of (simulated) sampling window 139 140 Float_t fLength; // Time between first and last photon 141 Float_t fTimeMedDev; // Median deviation 135 142 136 143 // Float_t fOffset; 137 144 // Float_t fWindow; 138 145 139 Int_t fMaxIndex; 146 Int_t fMaxIndex; //! 140 147 141 148 public: … … 147 154 148 155 void SetTime(Float_t first, Float_t last) { fTimeFirst=first; fTimeLast=last; } 156 void SetLength(Float_t len) { fLength=len; } 149 157 void SetMaxIndex(UInt_t idx) { fMaxIndex=idx; } 158 void SetTimeMedDev(Float_t dev) { fTimeMedDev=dev; } 150 159 151 160 // Float_t GetRawTimeFirst() const { return fTimeFirst; } … … 154 163 Float_t GetTimeFirst() const { return fTimeFirst; } 155 164 Float_t GetTimeLast() const { return fTimeLast; } 165 166 Float_t GetLength() const { return fLength; } 167 Float_t GetTimeMedDev() const { return fTimeMedDev; } 156 168 157 169 Int_t GetMaxIndex() const { return fMaxIndex; }
Note:
See TracChangeset
for help on using the changeset viewer.