Class Reference for E1039 Core & Analysis Software
PHG4PrimaryGeneratorAction.h
Go to the documentation of this file.
1 #ifndef PHG4PrimaryGeneratorAction_H__
2 #define PHG4PrimaryGeneratorAction_H__
3 
4 #include <Geant4/G4VUserPrimaryGeneratorAction.hh>
5 
6 class PHG4InEvent;
7 
8 class PHG4PrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction
9 {
10 
11  public:
13  verbosity(0), inEvent(0)
14  {}
15 
17  {}
18 
19  virtual void GeneratePrimaries(G4Event* anEvent);
20 
22  void SetInEvent( PHG4InEvent* const inevt )
23  { inEvent = inevt; }
24 
26  void Verbosity(const int val) { verbosity=val; }
27  int Verbosity() const { return verbosity; }
28 
29  protected:
30 
31  int verbosity;
32 
33  private:
34 
36  PHG4InEvent *inEvent;
37 
38 };
39 
40 
41 #endif // PHG4PrimaryGeneratorAction_H__
void Verbosity(const int val)
Set/Get verbosity.
void SetInEvent(PHG4InEvent *const inevt)
set top node (from where particle list is retrieved for passing to geant
virtual void GeneratePrimaries(G4Event *anEvent)