Go to the documentation of this file.00001
00002
00003
00004
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include "FWCore/Framework/interface/Frameworkfwd.h"
00020 #include "FWCore/Framework/interface/EDAnalyzer.h"
00021
00022 #include "FWCore/Framework/interface/Event.h"
00023 #include "FWCore/Framework/interface/MakerMacros.h"
00024
00025 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00026
00027 #include <vector>
00028 #include <string>
00029
00030 namespace edm
00031 {
00032
00033
00034
00035
00036
00037 class TestMix : public edm::EDAnalyzer {
00038 public:
00039 explicit TestMix(const edm::ParameterSet&);
00040 ~TestMix();
00041
00042
00043 virtual void analyze(const edm::Event&, const edm::EventSetup&);
00044
00045 private:
00046 int level_;
00047 std::vector<std::string> track_containers_;
00048 std::vector<std::string> track_containers2_;
00049 };
00050 }