#ifndef MARS_MPadSchweizer #define MARS_MPadSchweizer #ifndef MARS_MTask #include "MTask.h" #endif #ifndef MARS_MH #include "MH.h" #endif class TH1D; class TH2D; class TH3D; class MGeomCam; class MCerPhotEvt; class MPedestalCam; class MMcEvt; class MSigmabar; class MParList; class MPadSchweizer : public MTask { private: MGeomCam *fCam; MCerPhotEvt *fEvt; MSigmabar *fSigmabar; MMcEvt *fMcEvt; MPedestalCam *fPed; Int_t fPadFlag; Int_t fRunType; Int_t fGroup; Int_t fErrors[7]; // plots used for the padding TH2D *fHSigmaTheta; // 2D-histogram (sigmabar vs. Theta) TH3D *fHSigmaPixTheta; // 3D-histogram (Theta, pixel, sigma) TH3D *fHDiffPixTheta; // 3D-histogram (Theta, pixel, sigma^2-sigmabar^2) // plots for checking the padding TH2D *fHSigmaPedestal; // 2D-histogram : pedestal sigma after // versus before padding TH2D *fHPhotons; // 2D-histogram : no.of photons after // versus before padding TH2D *fHSigbarTheta; // 2D-histogram : sigmabar vs. Theta // (after padding) TH1D *fHNSB; // 1D-histogram : additional NSB TH3D *fHSigPixTh; // 3D : Theta, pixel, pedestal sigma // (after padding) TH3D *fHDiffPixTh; // 3D : Theta, pixel, sigma^2-sigmabar^2 // (after padding) public: MPadSchweizer(const char *name=NULL, const char *title=NULL); ~MPadSchweizer(); void SetHistograms(TH2D *hist2, TH3D *hist3, TH3D *hist3Diff); Bool_t PreProcess(MParList *pList); Bool_t Process(); Bool_t PostProcess(); void SetPadFlag(Int_t padflag); ClassDef(MPadSchweizer, 0) // task for the padding (Schweizer) }; #endif