StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StMuDstVtxSeedMaker.h
1 
14 #ifndef STAR_StMuDstVtxSeedMaker
15 #define STAR_StMuDstVtxSeedMaker
16 
17 #ifndef STAR_StVertexSeedMaker
18 #include "StVertexSeedMaker.h"
19 #endif
20 
21 class StMuDst;
22 class StMuEvent;
23 
24 
26  public:
27  StMuDstVtxSeedMaker(const char *name="EvtVtxSeedMkr");
28  virtual ~StMuDstVtxSeedMaker() {}
29  virtual Int_t Make();
30  virtual void PrintInfo();
31 
32  virtual const char *GetCVS() const {
33  static const char cvs[]="Tag $Name: $ $Id: StMuDstVtxSeedMaker.h,v 1.5 2016/08/02 21:17:17 genevb Exp $ built " __DATE__ " " __TIME__ ;
34  return cvs;
35  }
36 
37  protected:
38  virtual bool CheckTriggers();
39  virtual int GetEventData();
40 
41  StMuDst* mudst;
42  StMuEvent* event;
43 
44  ClassDef(StMuDstVtxSeedMaker,0)
45 };
46 
47 
48 
49 #endif
50 
51 // $Id: StMuDstVtxSeedMaker.h,v 1.5 2016/08/02 21:17:17 genevb Exp $
52 // $Log: StMuDstVtxSeedMaker.h,v $
53 // Revision 1.5 2016/08/02 21:17:17 genevb
54 // Added tDay,tFill to resNtuple, and improved C++11 compliance
55 //
56 // Revision 1.4 2014/08/06 11:43:32 jeromel
57 // Suffix on literals need to be space (later gcc compiler makes it an error) - first wave of fixes
58 //
59 // Revision 1.3 2012/08/17 22:57:33 genevb
60 // Add index of vertex within event to ntuple
61 //
62 // Revision 1.2 2006/09/01 22:27:16 genevb
63 // More detailed info in ntuple
64 //
65 // Revision 1.1 2005/06/14 18:52:20 genevb
66 // Introduction of code to use MuDst for beamline constraint
67 //
68 //
69 
70 
BeamLine Constraint calibration base class.