StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StarEmbedMaker.h
1 #ifndef __StarEmbedMaker_h__
2 #define __StarEmbedMaker_h__
3 #include "StarGenerator/BASE/StarPrimaryMaker.h"
4 #include <string>
5 #include <TTree.h>
6 #include <TFile.h>
8 {
9 public:
11  ~StarEmbedMaker();
12 
13  void SetInputFile( const char* filename );
14 
15  int Make();
16  void Clear( const Option_t* opts="" );
17 
18 private:
19 protected:
20 
21  bool mFzdInput;
22 
23  std::string mFilename; //
24  TFile* mFile;
25  TTree* mTree;
26 
27  long long mCurrentEntry;
28  int mRun;
29  int mEvent;
30  double mVertexX, mVertexY, mVertexZ;
31  double mSigmaX, mSigmaY, mSigmaZ;
32 
33 
34  ClassDef(StarEmbedMaker,1);
35 };
36 
37 #endif
Main steering class for event generation.