Ignore:
Timestamp:
05/21/06 16:17:05 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfilter
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfilter/MFEnergySlope.cc

    r7643 r7724  
    8787// --------------------------------------------------------------------------
    8888//
     89//     Constructor
     90//
     91MFEnergySlope::MFEnergySlope(Float_t slope, Float_t emin, const char *name, const char *title):
     92    fNewSlope(TMath::Abs(slope)), fMcMinEnergy(emin), fMcMaxEnergy(-1.)
     93{
     94    fName  = name  ? name  : "MFEnergySlope";
     95    fTitle = title ? title : "Filter to select energy with given slope";
     96}
     97
     98// --------------------------------------------------------------------------
     99//
    89100//   Preprocess
    90101// 
  • trunk/MagicSoft/Mars/mfilter/MFEnergySlope.h

    r7409 r7724  
    3838    MFEnergySlope(const char *name=NULL, const char *title=NULL);
    3939    MFEnergySlope(Float_t slope, const char *name=NULL, const char *title=NULL);
     40    MFEnergySlope(Float_t slope, Float_t emin, const char *name=NULL, const char *title=NULL);
    4041
    4142    // Setter
Note: See TracChangeset for help on using the changeset viewer.