Changeset 893 for trunk/MagicSoft/Mars/mmontecarlo/MMcThresholdCalc.h
- Timestamp:
- 07/23/01 13:54:06 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mmontecarlo/MMcThresholdCalc.h
r866 r893 13 13 #include "MTask.h" 14 14 #endif 15 #ifndef ROOT_TObjArray 16 #include "TObjArray.h" 17 #endif 15 18 16 19 class MMcEvt; … … 21 24 { 22 25 private: 23 UInt_t fDimension;26 Int_t fDimension; 24 27 25 28 const MMcEvt *fMcEvt; // Container with Monte Carlo information 26 MMcTrig **fMcTrig; // Container with Monte Carlo trigger information27 MHMcEnergy **fHMcEnergy; // Container where we save the energy (threshold)28 29 29 Bool_t *fMustDelete; // delete indicator for selfcreated energy hists 30 TObjArray *fMcTrig; // Container with Monte Carlo trigger information 31 TObjArray *fEnergy; // Container where we save the energy (threshold) 30 32 31 33 const static Float_t fSqrt2; // sqrt(2) 32 34 35 MMcTrig *GetTrig (UInt_t i) { return (MMcTrig*) (*fMcTrig)[i]; } 36 MHMcEnergy *GetHEnergy(UInt_t i) { return (MHMcEnergy*)(*fEnergy)[i]; } 37 33 38 public: 34 39 35 MMcThresholdCalc(const UInt_t dim = 1,40 MMcThresholdCalc(const Int_t dim = 0, 36 41 const char* name = NULL, const char* title = NULL); 37 42 ~MMcThresholdCalc();
Note:
See TracChangeset
for help on using the changeset viewer.