Ignore:
Timestamp:
10/24/01 15:12:21 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mmontecarlo
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mmontecarlo/MMcThresholdCalc.cc

    r984 r988  
    6363// dim < 0: use only condition number dim (eg "MMcTrig;3")
    6464// 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")
    6666//
    6767MMcThresholdCalc::MMcThresholdCalc(const Int_t dim, const char* name,
  • trunk/MagicSoft/Mars/mmontecarlo/MMcTriggerRateCalc.cc

    r984 r988  
    4343    *fTitle = title ? title : "Task to calc the trigger rate ";
    4444
     45    fMcTrig = NULL;
     46    fMcRate = NULL;
     47
    4548    fDimension = dim;
    4649
     
    9194}
    9295
     96MMcTriggerRateCalc::~MMcTriggerRateCalc()
     97{
     98    if (fMcTrig)
     99        delete fMcTrig;
     100
     101    if (fMcRate)
     102        delete fMcRate;
     103}
     104
    93105
    94106// --------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/mmontecarlo/MMcTriggerRateCalc.h

    r984 r988  
    5050                       const char *name=NULL, const char *title=NULL);
    5151
     52    ~MMcTriggerRateCalc();
     53
    5254    Bool_t PreProcess(MParList *pList);
    5355    Bool_t Process();
Note: See TracChangeset for help on using the changeset viewer.