HighLAND
ToyBoxND280.hxx
1 #ifndef ToyBoxND280_h
2 #define ToyBoxND280_h
3 
4 #include "ToyBoxB.hxx"
5 #include "BaseDataClasses.hxx"
6 
7 class ToyBoxND280:public ToyBoxB{
8 public :
9 
10  ToyBoxND280();
11  virtual ~ToyBoxND280(){}
12 
13  /// This method should be implemented by the derived class. If so it does nothing here
14  virtual void Reset();
15 
16  /// Reset this base class
17  virtual void ResetBase();
18 
19 public:
20 
21  /// For storing the true vertex, for analyses with no reconstructed primary vertex
23 };
24 
25 #endif
virtual void Reset()
This method should be implemented by the derived class. If so it does nothing here.
Definition: ToyBoxND280.cxx:12
Representation of a true Monte Carlo vertex.
AnaTrueVertexB * TrueVertex
For storing the true vertex, for analyses with no reconstructed primary vertex.
Definition: ToyBoxND280.hxx:22
virtual void ResetBase()
Reset this base class.
Definition: ToyBoxND280.cxx:30