CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Attributes
fwlite::AnalyzerWrapper< T > Class Template Reference

#include <FWLiteAnalyzerWrapper.h>

Public Member Functions

virtual void analyze ()
 everything which has to be done during the event loop. NOTE: the event will be looped inside this function More...
 
 AnalyzerWrapper (const edm::ParameterSet &cfg, std::string analyzerName, std::string directory="")
 default constructor More...
 
virtual void beginJob ()
 everything which has to be done before the event loop More...
 
virtual void endJob ()
 everything which has to be done after the event loop More...
 
virtual ~AnalyzerWrapper ()
 default destructor More...
 

Protected Attributes

boost::shared_ptr< Tanalyzer_
 derived class of type BasicAnalyzer More...
 
fwlite::TFileService fileService_
 TFileService for histogram management. More...
 
fwlite::InputSource inputHandler_
 helper class for input parameter handling More...
 
int maxEvents_
 maximal number of events to be processed (-1 means to loop over all event) More...
 
fwlite::OutputFiles outputHandler_
 helper class for output file handling More...
 
unsigned int reportAfter_
 number of events after which the progress will be reported (0 means no report) More...
 

Detailed Description

template<class T>
class fwlite::AnalyzerWrapper< T >

Definition at line 104 of file FWLiteAnalyzerWrapper.h.

Constructor & Destructor Documentation

template<class T >
fwlite::AnalyzerWrapper< T >::AnalyzerWrapper ( const edm::ParameterSet cfg,
std::string  analyzerName,
std::string  directory = "" 
)

default constructor

default contructor

Definition at line 135 of file FWLiteAnalyzerWrapper.h.

References fwlite::AnalyzerWrapper< T >::analyzer_, dir, fwlite::AnalyzerWrapper< T >::fileService_, edm::ParameterSet::getParameter(), and TFileDirectory::mkdir().

135  :
138  {
139  // analysis specific parameters
140  const edm::ParameterSet& ana = cfg.getParameter<edm::ParameterSet>(analyzerName.c_str());
141  if(directory.empty()){
142  // create analysis class of type BasicAnalyzer
143  analyzer_ = boost::shared_ptr<T>( new T( ana, fileService_) );
144  }
145  else{
146  // create a directory in the file if directory string is non empty
148  analyzer_ = boost::shared_ptr<T>( new T( ana, dir ) );
149  }
150  }
T getParameter(std::string const &) const
fwlite::OutputFiles outputHandler_
helper class for output file handling
fwlite::TFileService fileService_
TFileService for histogram management.
fwlite::InputSource inputHandler_
helper class for input parameter handling
TFileDirectory mkdir(const std::string &dir, const std::string &descr="")
create a new subdirectory
int maxEvents() const
return maxEvetns_
Definition: InputSource.h:42
int maxEvents_
maximal number of events to be processed (-1 means to loop over all event)
dbl *** dir
Definition: mlp_gen.cc:35
long double T
unsigned int reportAfter() const
return reportAfter_
Definition: InputSource.h:44
unsigned int reportAfter_
number of events after which the progress will be reported (0 means no report)
boost::shared_ptr< T > analyzer_
derived class of type BasicAnalyzer
std::string const & file() const
return output fuke name
Definition: OutputFiles.h:29
template<class T >
virtual fwlite::AnalyzerWrapper< T >::~AnalyzerWrapper ( )
inlinevirtual

default destructor

Definition at line 110 of file FWLiteAnalyzerWrapper.h.

110 {};

Member Function Documentation

template<class T >
void fwlite::AnalyzerWrapper< T >::analyze ( void  )
virtual

everything which has to be done during the event loop. NOTE: the event will be looped inside this function

Definition at line 154 of file FWLiteAnalyzerWrapper.h.

References loadConditions::analyzer_, fwlite::ChainEvent::atEnd(), gather_cfg::cout, event(), merge::inputFiles, and fwlite::ChainEvent::toBegin().

Referenced by main().

154  {
155  int ievt=0;
156  std::vector<std::string> const & inputFiles = inputHandler_.files();
157  // loop the vector of input files
158  fwlite::ChainEvent event( inputFiles );
159  for(event.toBegin(); !event.atEnd(); ++event, ++ievt){
160  // break loop if maximal number of events is reached
161  if(maxEvents_>0 ? ievt+1>maxEvents_ : false) break;
162  // simple event counter
163  if(reportAfter_!=0 ? (ievt>0 && ievt%reportAfter_==0) : false)
164  std::cout << " processing event: " << ievt << std::endl;
165  // analyze event
166  analyzer_->analyze(event);
167  }
168  }
fwlite::InputSource inputHandler_
helper class for input parameter handling
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
int maxEvents_
maximal number of events to be processed (-1 means to loop over all event)
tuple inputFiles
Definition: merge.py:5
tuple cout
Definition: gather_cfg.py:121
const std::vector< std::string > & files() const
return vector of files_
Definition: InputSource.h:40
unsigned int reportAfter_
number of events after which the progress will be reported (0 means no report)
boost::shared_ptr< T > analyzer_
derived class of type BasicAnalyzer
template<class T >
virtual void fwlite::AnalyzerWrapper< T >::beginJob ( void  )
inlinevirtual

everything which has to be done before the event loop

Definition at line 112 of file FWLiteAnalyzerWrapper.h.

References fwlite::AnalyzerWrapper< T >::analyzer_.

Referenced by main().

112 { analyzer_->beginJob(); }
boost::shared_ptr< T > analyzer_
derived class of type BasicAnalyzer
template<class T >
virtual void fwlite::AnalyzerWrapper< T >::endJob ( void  )
inlinevirtual

everything which has to be done after the event loop

Definition at line 116 of file FWLiteAnalyzerWrapper.h.

References fwlite::AnalyzerWrapper< T >::analyzer_.

Referenced by main().

116 { analyzer_->endJob(); }
boost::shared_ptr< T > analyzer_
derived class of type BasicAnalyzer

Member Data Documentation

template<class T >
boost::shared_ptr<T> fwlite::AnalyzerWrapper< T >::analyzer_
protected
template<class T >
fwlite::TFileService fwlite::AnalyzerWrapper< T >::fileService_
protected

TFileService for histogram management.

Definition at line 128 of file FWLiteAnalyzerWrapper.h.

Referenced by fwlite::AnalyzerWrapper< T >::AnalyzerWrapper().

template<class T >
fwlite::InputSource fwlite::AnalyzerWrapper< T >::inputHandler_
protected

helper class for input parameter handling

Definition at line 120 of file FWLiteAnalyzerWrapper.h.

template<class T >
int fwlite::AnalyzerWrapper< T >::maxEvents_
protected

maximal number of events to be processed (-1 means to loop over all event)

Definition at line 124 of file FWLiteAnalyzerWrapper.h.

template<class T >
fwlite::OutputFiles fwlite::AnalyzerWrapper< T >::outputHandler_
protected

helper class for output file handling

Definition at line 122 of file FWLiteAnalyzerWrapper.h.

template<class T >
unsigned int fwlite::AnalyzerWrapper< T >::reportAfter_
protected

number of events after which the progress will be reported (0 means no report)

Definition at line 126 of file FWLiteAnalyzerWrapper.h.