StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSpinInfoMaker.h
1 
14 #ifndef _ST_SPIN_INFO_MAKER_H_
15 #define _ST_SPIN_INFO_MAKER_H_
16 
17 #include "StRoot/StEEmcPool/./EEmcTreeContainers/StSpinInfo.h"
18 
20 #include "StMaker.h"
21 
22 class StSpinInfoMaker_t : public StMaker {
23  public:
25  StSpinInfoMaker_t( const Char_t *name ) : StMaker( name ) { /* */ };
26 
28  virtual ~StSpinInfoMaker_t(){ /* */ };
29 
31  Int_t Init();
32 
34  Int_t Make();
35 
37  void Clear(Option_t *opts="");
38 
40  StSpinInfo_t* getSpinInfoPtr(){ return &mSpinInfo; };
41 
42  protected:
43  StSpinInfo_t mSpinInfo;
44 
45  private:
46  ClassDef( StSpinInfoMaker_t, 1 );
47 };
48 
49 #endif
50 
51 /*
52  * $Id: StSpinInfoMaker.h,v 1.1 2012/11/26 19:06:11 sgliske Exp $
53  * $Log: StSpinInfoMaker.h,v $
54  * Revision 1.1 2012/11/26 19:06:11 sgliske
55  * moved from offline/users/sgliske/StRoot/StEEmcPool/StEEmcTreeMaker to StRoot/StEEmcPool/StEEmcTreeMaker
56  *
57  *
58  */
virtual ~StSpinInfoMaker_t()
Deconstructor.
void Clear(Option_t *opts="")
Clear for next event.
StSpinInfoMaker_t(const Char_t *name)
Construtor.
Int_t Make()
Fill the spin info class.
Int_t Init()
Initialize.
Include StRoot headers.
StSpinInfo_t * getSpinInfoPtr()
Accessors.