Changeset 988 for trunk/MagicSoft/Mars/mmontecarlo
- Timestamp:
- 10/24/01 15:12:21 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mmontecarlo
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mmontecarlo/MMcThresholdCalc.cc
r984 r988 63 63 // dim < 0: use only condition number dim (eg "MMcTrig;3") 64 64 // dim = 0: use only condition without a number ("MMcTrig") 65 // dim > 0: use conditions up to dim 65 // dim > 0: use conditions up to dim (from "MMcTrig;1" to "MMcTrig;dim") 66 66 // 67 67 MMcThresholdCalc::MMcThresholdCalc(const Int_t dim, const char* name, -
trunk/MagicSoft/Mars/mmontecarlo/MMcTriggerRateCalc.cc
r984 r988 43 43 *fTitle = title ? title : "Task to calc the trigger rate "; 44 44 45 fMcTrig = NULL; 46 fMcRate = NULL; 47 45 48 fDimension = dim; 46 49 … … 91 94 } 92 95 96 MMcTriggerRateCalc::~MMcTriggerRateCalc() 97 { 98 if (fMcTrig) 99 delete fMcTrig; 100 101 if (fMcRate) 102 delete fMcRate; 103 } 104 93 105 94 106 // -------------------------------------------------------------------------- -
trunk/MagicSoft/Mars/mmontecarlo/MMcTriggerRateCalc.h
r984 r988 50 50 const char *name=NULL, const char *title=NULL); 51 51 52 ~MMcTriggerRateCalc(); 53 52 54 Bool_t PreProcess(MParList *pList); 53 55 Bool_t Process();
Note:
See TracChangeset
for help on using the changeset viewer.