File indexing completed on 2024-04-06 12:02:49
0001 #ifndef DTROMapValidateHandler_H
0002 #define DTROMapValidateHandler_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/DTReadOutMapping.h"
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033 class DTROMapValidateHandler : public popcon::PopConSourceHandler<DTReadOutMapping> {
0034 public:
0035
0036
0037 DTROMapValidateHandler(const edm::ParameterSet& ps);
0038
0039
0040
0041 virtual ~DTROMapValidateHandler();
0042
0043
0044
0045
0046 void getNewObjects();
0047 std::string id() const;
0048
0049 private:
0050 std::string dataVersion;
0051 std::string dataFileName;
0052 std::string elogFileName;
0053 };
0054
0055 #endif