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
56
57
58
|
#ifndef DTRangeT0ValidateHandler_H
#define DTRangeT0ValidateHandler_H
/** \class DTRangeT0ValidateHandler
*
* Description:
*
*
* $Date: 2010/01/12 13:00:00 $
* $Revision: 1.1 $
* \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/DTRangeT0.h"
//---------------
// C++ Headers --
//---------------
// ---------------------
// -- Class Interface --
// ---------------------
class DTRangeT0ValidateHandler : public popcon::PopConSourceHandler<DTRangeT0> {
public:
/** Constructor
*/
DTRangeT0ValidateHandler(const edm::ParameterSet& ps);
/** Destructor
*/
virtual ~DTRangeT0ValidateHandler();
/** Operations
*/
///
void getNewObjects();
std::string id() const;
private:
int firstRun;
int lastRun;
std::string dataVersion;
std::string dataFileName;
std::string elogFileName;
void addNewObject(int runNumber);
};
#endif // DTRangeT0ValidateHandler_H
|