CMS 3D CMS Logo

FWLiteWithBasicAnalyzer.cc
Go to the documentation of this file.
4 
6 
7 int main(int argc, char* argv[])
8 {
9  // load framework libraries
10  gSystem->Load( "libFWCoreFWLite" );
12 
13  // only allow one argument for this simple example which should be the
14  // the python cfg file
15  if ( argc < 2 ) {
16  std::cout << "Usage : " << argv[0] << " [parameters.py]" << std::endl;
17  return 0;
18  }
19  if( !edm::readPSetsFrom(argv[1])->existsAs<edm::ParameterSet>("process") ){
20  std::cout << " ERROR: ParametersSet 'plot' is missing in your configuration file" << std::endl; exit(0);
21  }
22 
23  WrappedFWLiteMuonAnalyzer ana(edm::readPSetsFrom(argv[1])->getParameter<edm::ParameterSet>("process"), std::string("muonAnalyzer"), std::string("analyzeBasicPat"));
24  ana.beginJob();
25  ana.analyze();
26  ana.endJob();
27  return 0;
28 }
fwlite::AnalyzerWrapper< BasicMuonAnalyzer > WrappedFWLiteMuonAnalyzer
static void enable()
enable automatic library loading
virtual void beginJob()
everything which has to be done before the event loop
std::unique_ptr< edm::ParameterSet > readPSetsFrom(std::string const &fileOrString)
virtual void endJob()
everything which has to be done after the event loop
virtual void analyze()
everything which has to be done during the event loop. NOTE: the event will be looped inside this fun...
int main(int argc, char *argv[])