File indexing completed on 2024-04-06 12:31:59
0001 #ifndef Validation_DTRecHits_DTRecHitClients_h
0002 #define Validation_DTRecHits_DTRecHitClients_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #include "DQMServices/Core/interface/DQMEDHarvester.h"
0013 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0014
0015 class DTRecHitClients : public DQMEDHarvester {
0016 public:
0017
0018 DTRecHitClients(const edm::ParameterSet &ps);
0019
0020 ~DTRecHitClients() override;
0021
0022 protected:
0023
0024 void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override;
0025
0026 private:
0027
0028 bool doStep1_;
0029 bool doStep2_;
0030 bool doStep3_;
0031 bool local_;
0032 bool doall_;
0033 };
0034
0035 #endif