CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TestMix.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Class: TestMix
4 //
10 //
11 // Original Author: Ursula Berthon
12 // Created: Fri Sep 23 11:38:38 CEST 2005
13 //
14 //
15 
16 
17 // system include files
20 
23 
25 
26 #include <vector>
27 #include <string>
28 
29 namespace edm
30 {
31 
32  //
33  // class declaration
34  //
35 
36  class TestMix : public edm::EDAnalyzer {
37  public:
38  explicit TestMix(const edm::ParameterSet&);
39  ~TestMix();
40 
41 
42  virtual void analyze(const edm::Event&, const edm::EventSetup&) override;
43 
44  private:
45  int level_;
46  std::vector<std::string> track_containers_;
47  std::vector<std::string> track_containers2_;
48  };
49 }//edm
std::vector< std::string > track_containers2_
Definition: TestMix.h:47
virtual void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: TestMix.cc:74
std::vector< std::string > track_containers_
Definition: TestMix.h:46
TestMix(const edm::ParameterSet &)
Definition: TestMix.cc:45
int level_
Definition: TestMix.h:45