#ifndef HQAVARIATIONS_H
#define HQAVARIATIONS_H
#include "TObject.h"
class TProfile;
class HQAVariations : public TObject {
public:
HQAVariations(Int_t intervalSize = 5000);
virtual ~HQAVariations() {}
virtual void bookHist();
virtual void activateHist();
TList *getHistList() {return histList;}
private:
virtual void bookHistEvent();
virtual void bookHistStart();
virtual void bookHistRich();
virtual void bookHistPid();
virtual void bookHistMdc();
virtual void bookHistShower();
virtual void bookHistTof();
virtual void bookHistTofino();
virtual void bookHistKick();
virtual void bookHistTrig();
void resetPointers();
public:
TList *histList;
Int_t maxEvents;
TProfile *evtHeader_eventSize_Var;
TProfile *stCal_meanStrip_Var;
TProfile *pidTrackCand_n_Var;
TProfile *pidTrackCandLep_n_Var;
TProfile *richCal_n_Var;
TProfile *richHit_n_Var;
TProfile *mdcCal1_time1_m0_Var;
TProfile *mdcCal1_time1_m1_Var;
TProfile *mdcCal1_time1_m2_Var;
TProfile *mdcCal1_time1_m3_Var;
TProfile *mdcCal1_time2m1_m0_Var;
TProfile *mdcCal1_time2m1_m1_Var;
TProfile *mdcCal1_time2m1_m2_Var;
TProfile *mdcCal1_time2m1_m3_Var;
TProfile *tofHit_n_Var;
TProfile *shoHit_n_Var;
TProfile *shoHitTof_n_Var;
TProfile *kickTrack_n_Var;
TProfile *trigRich_n_Var;
TProfile *trigTof_n_Var;
TProfile *trigShower_n_Var;
TProfile *trigTlepton_n_Var;
TProfile *trigSlepton_n_Var;
ClassDef(HQAVariations,1)
};
#endif
Last change: Sat May 22 13:07:52 2010
Last generated: 2010-05-22 13:07
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.