Ignore:
Timestamp:
07/06/01 14:48:54 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r855 r859  
    2828//  MMcThresholdCalc                                                       //
    2929//                                                                         //
     30//  Input Containers:                                                      //
     31//   MMcEvt                                                                //
     32//                                                                         //
     33//  Output Containers:                                                     //
     34//   MMcTrig;*, MHMcEnergy;*                                               //
     35//                                                                         //
    3036/////////////////////////////////////////////////////////////////////////////
    3137
     
    5258    *fTitle = title ? title : "Task to calculate the energy threshold from Monte Carlo";
    5359
    54     fMcTrig     = new (MMcTrig*)[fDimension];
    55     fHMcEnergy  = new (MHMcEnergy*)[fDimension];
     60    fMcTrig     = new MMcTrig*[fDimension];
     61    fHMcEnergy  = new MHMcEnergy*[fDimension];
    5662    fMustDelete = new Bool_t[fDimension];
    5763
     
    7581    // connect Monte Carlo data with this task
    7682
    77     char auxname[15]="MMcTrig"; // string to write container names
    78 
    7983    fMcEvt = (MMcEvt*)pList->FindObject("MMcEvt");
    8084    if (!fMcEvt)
     
    8387        return kFALSE;
    8488    }
     89
     90    char auxname[15]="MMcTrig"; // string to write container names
    8591
    8692    for (unsigned int i=0; i<fDimension; i++)
Note: See TracChangeset for help on using the changeset viewer.