MarlinTPC  1.2.0
DumpHitsProcessor.h
1 #ifndef DUMP_HITS_PROCESSOR_H
2 #define DUMP_HITS_PROCESSOR_H 1
3 
4 //LCIO
5 #include <lcio.h>
6 
7 //MARLIN
8 #include <marlin/Processor.h>
9 
10 namespace marlintpc
11 {
12 
18  class DumpHitsProcessor : public marlin::Processor{
19 
20  public:
21 
22  virtual Processor* newProcessor() { return new DumpHitsProcessor ; }
23 
25 
26  virtual void processEvent( LCEvent * evt ) ;
27 
28  protected:
29 
30  std::string _inputColName ;
31 
32  };
33 }
34 
35 #endif // DUMP_HITS_IN_TRACKS_PROCESSOR_H
Dump the coordinates of all hits in the hits collection.
Definition: DumpHitsProcessor.h:18
std::string _inputColName
the name of the input collection
Definition: DumpHitsProcessor.h:30