CMS 3D CMS Logo

Mixing2DB.h
Go to the documentation of this file.
1 #ifndef Mixing2DB_H
2 #define Mixing2DB_H
3 // -*- C++ -*-
4 //
5 // Package: Mixing2DB
6 // Class: Mixing2DB
7 //
15 //
16 // Original Author: Jean-Roch Vlimant,40 3-A28,+41227671209,
17 // Created: Mon Jan 9 17:27:59 CET 2012
18 //
19 //
20 
21 // system include files
22 #include <memory>
23 
24 // user include files
27 
30 
32 //
33 // class declaration
34 //
35 
36 class Mixing2DB : public edm::one::EDAnalyzer<> {
37 public:
38  explicit Mixing2DB(const edm::ParameterSet&);
39  ~Mixing2DB() override;
40 
41  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
42 
43 private:
44  void beginJob() override;
45  void analyze(const edm::Event&, const edm::EventSetup&) override;
46  void endJob() override;
47 
48  // ----------member data ---------------------------
50 };
51 
52 #endif
edm::ParameterSet cfi_
Definition: Mixing2DB.h:49
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: Mixing2DB.cc:40
void endJob() override
Definition: Mixing2DB.cc:49
~Mixing2DB() override
Definition: Mixing2DB.cc:24
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: Mixing2DB.cc:34
Mixing2DB(const edm::ParameterSet &)
Definition: Mixing2DB.cc:19
void beginJob() override
Definition: Mixing2DB.cc:37