File indexing completed on 2024-04-06 12:32:53
0001 #ifndef ME0HitsValidation_H
0002 #define ME0HitsValidation_H
0003
0004 #include "Validation/MuonME0Validation/interface/ME0BaseValidation.h"
0005
0006 class ME0HitsValidation : public ME0BaseValidation {
0007 public:
0008 explicit ME0HitsValidation(const edm::ParameterSet &);
0009 ~ME0HitsValidation() override;
0010 void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override;
0011 void analyze(const edm::Event &e, const edm::EventSetup &) override;
0012
0013 private:
0014 MonitorElement *me0_sh_xy[2][6];
0015 MonitorElement *me0_sh_zr[2][6];
0016 MonitorElement *me0_sh_tot_zr[2];
0017
0018 MonitorElement *me0_sh_tof[2][6];
0019 MonitorElement *me0_sh_tofMu[2][6];
0020 MonitorElement *me0_sh_eloss[2][6];
0021 MonitorElement *me0_sh_elossMu[2][6];
0022
0023 Int_t npart;
0024 };
0025
0026 #endif