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 // $Id: TestMix.h,v 1.1 2007/04/19 14:51:54 uberthon Exp $
14 //
15 //
16 
17 
18 // system include files
21 
24 
26 
27 #include <vector>
28 #include <string>
29 
30 namespace edm
31 {
32 
33  //
34  // class declaration
35  //
36 
37  class TestMix : public edm::EDAnalyzer {
38  public:
39  explicit TestMix(const edm::ParameterSet&);
40  ~TestMix();
41 
42 
43  virtual void analyze(const edm::Event&, const edm::EventSetup&);
44 
45  private:
46  int level_;
47  std::vector<std::string> track_containers_;
48  std::vector<std::string> track_containers2_;
49  };
50 }//edm
virtual void analyze(const edm::Event &, const edm::EventSetup &)
Definition: TestMix.cc:75
std::vector< std::string > track_containers2_
Definition: TestMix.h:48
std::vector< std::string > track_containers_
Definition: TestMix.h:47
TestMix(const edm::ParameterSet &)
Definition: TestMix.cc:46
int level_
Definition: TestMix.h:46