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