1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#ifndef DTROMapValidateHandler_H
#define DTROMapValidateHandler_H
/** \class DTROMapValidateHandler
*
* Description:
*
*
* $Date: 2008/03/21 15:12:29 $
* $Revision: 1.2 $
* \author Paolo Ronchese INFN Padova
*
*/
//----------------------
// Base Class Headers --
//----------------------
#include "CondCore/PopCon/interface/PopConSourceHandler.h"
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "CondFormats/DTObjects/interface/DTReadOutMapping.h"
//---------------
// C++ Headers --
//---------------
// ---------------------
// -- Class Interface --
// ---------------------
class DTROMapValidateHandler : public popcon::PopConSourceHandler<DTReadOutMapping> {
public:
/** Constructor
*/
DTROMapValidateHandler(const edm::ParameterSet& ps);
/** Destructor
*/
virtual ~DTROMapValidateHandler();
/** Operations
*/
///
void getNewObjects();
std::string id() const;
private:
std::string dataVersion;
std::string dataFileName;
std::string elogFileName;
};
#endif // DTROMapValidateHandler_H
|