Changeset 5081 for trunk/MagicSoft


Ignore:
Timestamp:
09/16/04 17:09:28 (20 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Simulation/Detector/include-MLons
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Simulation/Detector/include-MLons/MLons.cxx

    r2987 r5081  
    2020}
    2121
    22 MLons::MLons(Float_t in_amplT, Float_t in_FwhmT,
    23              Float_t in_integF, Float_t in_FwhmF){
     22MLons::MLons(Float_t in_shapeT, Float_t in_amplT, Float_t in_FwhmT,
     23             Float_t in_shapeF, Float_t in_integF, Float_t in_FwhmF){
    2424  //--------------------------------------------------------------------
    2525  //
     
    2727  //
    2828
    29   fTrigShape = 0.0;
     29  fTrigShape = in_shapeT;
    3030  fAmplTrig = in_amplT;
    3131  fFwhmTrig = in_FwhmT;
    3232
    33   fFadcShape = 0.0;
     33  fFadcShape = in_shapeF;
    3434  fIntegFadc = in_integF;
    3535  fFwhmFadc = in_FwhmF;
     
    134134
    135135  if (  fIntegFadc == MSLStored.GetIntegFadc() &&
    136         fFwhmFadc == MSLStored.GetFwhmFadc())
     136        fFwhmFadc == MSLStored.GetFwhmFadc() &&
     137        fFadcShape == MSLStored.GetShapeFadc())
    137138    return 1;
    138139
  • trunk/MagicSoft/Simulation/Detector/include-MLons/MLons.hxx

    r2988 r5081  
    6060  MLons() ;
    6161
    62   MLons(Float_t in_amplT, Float_t in_FwhmT,
    63         Float_t in_integF, Float_t in_FwhmF) ;
     62  MLons(Float_t in_shapeT, Float_t in_amplT, Float_t in_FwhmT,
     63        Float_t in_shapeF, Float_t in_integF, Float_t in_FwhmF) ;
    6464
    6565  void Reset() ;
Note: See TracChangeset for help on using the changeset viewer.