1 #ifndef ROWCUTAPPLICATIONPROCESSOR_H
2 #define ROWCUTAPPLICATIONPROCESSOR_H
12 #include "marlin/Processor.h"
13 #include "marlin/EventModifier.h"
86 virtual const std::string &
87 name()
const {
return Processor::name();}
virtual void init()
Variable initialization.
Definition: RowCutApplicationProcessor.cc:87
virtual Processor * newProcessor()
Creates and register a new processor of type RowCutApplicationProcessor.
Definition: RowCutApplicationProcessor.h:53
std::set< std::pair< int, int > > _skipList
The list of the rows to skip.
Definition: RowCutApplicationProcessor.h:101
virtual void processRunHeader(lcio::LCRunHeader *run)
Method to modify the RunHeader of the LCIO file.
Definition: RowCutApplicationProcessor.cc:113
bool _isSubset
If true the output collection will be stored as a subset of the input containing only the "good" hits...
Definition: RowCutApplicationProcessor.h:98
bool _flaggingON
If true, hits in rows marked for removal will be flagged in the input collection modifying the input ...
Definition: RowCutApplicationProcessor.h:99
std::string _inputColName
the name of the input collection
Definition: RowCutApplicationProcessor.h:91
Definition: RowCutApplicationProcessor.h:44
static const std::pair< int, int > ALLROWS
The pair that identifies the default value of the SkipRow parameter and the special combination meani...
Definition: RowCutApplicationProcessor.h:102
bool _outputIsTransient
if this flag is true the output will not be written to file
Definition: RowCutApplicationProcessor.h:94
std::string _outputColName
the name of the output collection
Definition: RowCutApplicationProcessor.h:92
RowCutApplicationProcessor()
Default constructor Used to create objects and register the processor parameters. ...
Definition: RowCutApplicationProcessor.cc:35
virtual const std::string & name() const
Definition: RowCutApplicationProcessor.h:87
IntVec _rows2skip
Vector of rows to skip.
Definition: RowCutApplicationProcessor.h:96
virtual void processEvent(lcio::LCEvent *evt)
All the processing is done here.
Definition: RowCutApplicationProcessor.cc:127