MarlinTPC  1.2.0
PadGeometryChecker.h
1 #ifndef PADGEOMETRYCHECKER_H
2 #define PADGEOMETRYCHECKER_H
3 
4 #include <marlin/Processor.h>
5 #include <lcio.h>
6 #include <string>
7 
11 class PadGeometryChecker : public marlin::Processor
12 {
13  public:
15  virtual ~PadGeometryChecker();
16 
17  Processor * newProcessor();
18 
19  void init();
20  void processRunHeader (lcio::LCRunHeader *run);
21  virtual void processEvent(lcio::LCEvent *evt);
22  virtual void check (lcio::LCEvent *evt);
23  virtual void end();
24 
25  private:
26  std::string _outfileName;
27 };
28 
29 #endif // PADGEOMETRYCHECKER_H
PadGeometryCheckerProcessor: take the xml gear geometry file and print out simple stuff about the pad...
Definition: PadGeometryChecker.h:11