StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StMagFMaker.h
1 // $Id: StMagFMaker.h,v 1.8 2014/08/06 11:43:26 jeromel Exp $
2 // $Log: StMagFMaker.h,v $
3 // Revision 1.8 2014/08/06 11:43:26 jeromel
4 // Suffix on literals need to be space (later gcc compiler makes it an error) - first wave of fixes
5 //
6 // Revision 1.7 2009/11/10 20:50:46 fisyak
7 // Switch to TChair
8 //
9 // Revision 1.6 2005/08/29 22:54:27 fisyak
10 // switch to StarMagField
11 //
12 // Revision 1.5 2003/09/10 19:47:21 perev
13 // ansi corrs
14 //
15 // Revision 1.4 2001/05/21 21:40:36 fisyak
16 // Merge geant and production mag. fields
17 //
18 // Revision 1.3 2001/05/17 20:38:26 fisyak
19 // Move check for mag. scale factor into InitRun
20 //
21 // Revision 1.2 2000/01/07 00:42:33 fisyak
22 // merge Make with Init
23 //
24 // Revision 1.1 2000/01/04 20:44:41 fisyak
25 // Add StMagFMaker
26 //
27 #ifndef STAR_StMagFMaker
28 #define STAR_StMagFMaker
29 
31 // //
32 // StMagFMaker virtual base class for Maker //
33 // //
34 // Submit any problem with this code via begin_html <A HREF="http://www.rhic.bnl.gov/STAR/html/comp_l/sofi/bugs/send-pr.html"><B><I>"STAR Problem Report Form"</I></B></A> end_html
35 //
37 #ifndef StMaker_H
38 #include "StMaker.h"
39 #endif
40 class St_MagFactor;
41 class StMagFMaker : public StMaker {
42  public:
43  StMagFMaker(const char *name="MagField") : StMaker(name) {}
44  virtual ~StMagFMaker();
45  virtual Int_t Init() {return kStOK;}
46  virtual Int_t InitRun(Int_t run);
47  Int_t Make() {return kStOK;}
48  virtual const char *GetCVS() const
49  {static const char cvs[]="Tag $Name: $ $Id: StMagFMaker.h,v 1.8 2014/08/06 11:43:26 jeromel Exp $ built " __DATE__ " " __TIME__ ; return cvs;}
50 
51  ClassDef(StMagFMaker,0) //StAF chain virtual base class for Makers
52 };
53 
54 #endif
Int_t Make()
Definition: StMagFMaker.h:47
StMaker(const char *name="", const char *dummy=0)
Constructor &amp; Destructor.
Definition: StMaker.cxx:188
Definition: Stypes.h:40