StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StMcQaMaker.h
1 /**********************************************
2  *
3  * $Id: StMcQaMaker.h,v 1.2 2015/08/29 03:37:46 perev Exp $
4  * $Log: StMcQaMaker.h,v $
5  * Revision 1.2 2015/08/29 03:37:46 perev
6  * __
7  *
8  * Revision 1.1 2007/03/21 16:48:49 fisyak
9  * maker for side by side comparision of GEANT and VMC simulations
10  *
11  *
12  * Creates Histograms to test functionality of
13  * StMcEvent
14  *
15  **********************************************/
16 
17 #ifndef StMcQaMaker_HH
18 #define StMcQaMaker_HH
19 
20 #ifndef StMaker_H
21 #include "StMaker.h"
22 #endif
23 class StMcEvent;
24 
25 class StMcQaMaker : public StMaker {
26 
27  public:
28 
29  StMcQaMaker(const char* name = "StMcQaMaker",
30  const char* title = "event/StMcQaMaker") : StMaker(name,title) {}
31  virtual ~StMcQaMaker() {}
32  virtual Int_t Init();
33  virtual Int_t Make();
34  virtual void QAPlots(StMcEvent *ev=0);
35  virtual const char* GetCVS() const
36  {static const char cvs[]="Tag $Name: $ $Id: StMcQaMaker.h,v 1.2 2015/08/29 03:37:46 perev Exp $ built " __DATE__ " " __TIME__; return cvs;}
37  ClassDef(StMcQaMaker,0)
38 };
39 #endif
virtual Int_t Make()
Definition: StMcQaMaker.cxx:53
virtual void QAPlots(StMcEvent *ev=0)
Definition: StMcQaMaker.cxx:61
StMaker(const char *name="", const char *dummy=0)
Constructor & Destructor.
Definition: StMaker.cxx:188
Event data structure to hold all information from a Monte Carlo simulation. This class is the interfa...
Definition: StMcEvent.hh:169