Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:49

0001 #ifndef DTROMapValidateHandler_H
0002 #define DTROMapValidateHandler_H
0003 /** \class DTROMapValidateHandler
0004  *
0005  *  Description: 
0006  *
0007  *
0008  *  $Date: 2008/03/21 15:12:29 $
0009  *  $Revision: 1.2 $
0010  *  \author Paolo Ronchese INFN Padova
0011  *
0012  */
0013 
0014 //----------------------
0015 // Base Class Headers --
0016 //----------------------
0017 #include "CondCore/PopCon/interface/PopConSourceHandler.h"
0018 
0019 //------------------------------------
0020 // Collaborating Class Declarations --
0021 //------------------------------------
0022 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0023 #include "CondFormats/DTObjects/interface/DTReadOutMapping.h"
0024 
0025 //---------------
0026 // C++ Headers --
0027 //---------------
0028 
0029 //              ---------------------
0030 //              -- Class Interface --
0031 //              ---------------------
0032 
0033 class DTROMapValidateHandler : public popcon::PopConSourceHandler<DTReadOutMapping> {
0034 public:
0035   /** Constructor
0036    */
0037   DTROMapValidateHandler(const edm::ParameterSet& ps);
0038 
0039   /** Destructor
0040    */
0041   virtual ~DTROMapValidateHandler();
0042 
0043   /** Operations
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  // DTROMapValidateHandler_H