File indexing completed on 2024-04-06 12:01:43
0001 #ifndef POPCON_EX_PEDESTALS_SRC_H
0002 #define POPCON_EX_PEDESTALS_SRC_H
0003
0004 #include <vector>
0005 #include <string>
0006 #include <iostream>
0007 #include <typeinfo>
0008
0009 #include "CondCore/PopCon/interface/PopConSourceHandler.h"
0010
0011 #include "CondFormats/Calibration/interface/Pedestals.h"
0012
0013 #include "FWCore/ParameterSet/interface/ParameterSetfwd.h"
0014
0015 #include <string>
0016
0017 namespace popcon {
0018 class ExPedestalSource : public popcon::PopConSourceHandler<Pedestals> {
0019 public:
0020 void getNewObjects();
0021 std::string id() const { return m_name; }
0022 ~ExPedestalSource();
0023 ExPedestalSource(const edm::ParameterSet& pset);
0024
0025 private:
0026 std::string m_name;
0027 long long m_since;
0028 long long m_increment;
0029 long long m_number;
0030 };
0031 }
0032 #endif