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
|
#ifndef DTKeyedConfigDBInit_H
#define DTKeyedConfigDBInit_H
/** \class DTKeyedConfigDBInit
*
* Description:
*
*
* $Date: 2010/03/18 16:07:59 $
* $Revision: 1.1.2.1 $
* \author Paolo Ronchese INFN Padova
*
*/
//----------------------
// Base Class Headers --
//----------------------
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
//---------------
// C++ Headers --
//---------------
#include <string>
// ---------------------
// -- Class Interface --
// ---------------------
class DTKeyedConfigDBInit : public edm::one::EDAnalyzer<> {
public:
/** Constructor
*/
explicit DTKeyedConfigDBInit(const edm::ParameterSet& ps);
/** Destructor
*/
~DTKeyedConfigDBInit() override;
/** Operations
*/
///
void beginJob() override;
void analyze(const edm::Event& e, const edm::EventSetup& c) override;
void endJob() override;
private:
std::string container;
std::string iov;
};
#endif // DTKeyedConfigDBInit_H
|