HighLAND
tutorialCorrection.hxx
1 #ifndef tutorialCorrection_h
2 #define tutorialCorrection_h
3 
4 #include "CorrectionBase.hxx"
5 
6 const UInt_t NMAXRUNPERIODS=20;
7 
9  public:
10 
12  virtual ~tutorialCorrection(){}
13 
14  void Apply(AnaSpillC& spill);
15 
16 protected:
17 
18  UInt_t _nRunPeriods;
19  Float_t _correction[NMAXRUNPERIODS];
20 
21 };
22 
23 #endif
All corrections should be registered with the CorrectionManager.
void Apply(AnaSpillC &spill)