File indexing completed on 2024-04-06 12:02:45
0001 #ifndef DTT0Handler_H
0002 #define DTT0Handler_H
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #include "CondCore/PopCon/interface/PopConSourceHandler.h"
0018
0019
0020
0021
0022 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0023 #include "CondFormats/DTObjects/interface/DTT0.h"
0024
0025
0026
0027
0028 #include <string>
0029
0030
0031
0032
0033
0034 class DTT0Handler : public popcon::PopConSourceHandler<DTT0> {
0035 public:
0036
0037
0038 DTT0Handler(const edm::ParameterSet& ps);
0039
0040
0041
0042 ~DTT0Handler() override;
0043
0044
0045
0046
0047 void getNewObjects() override;
0048 std::string id() const override;
0049
0050 private:
0051 std::string dataTag;
0052 std::string fileName;
0053 unsigned int runNumber;
0054 };
0055
0056 #endif