Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:18:09

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef G4MAIN_PHG4PARTICLEGUN_H
0004 #define G4MAIN_PHG4PARTICLEGUN_H
0005 
0006 #include "PHG4ParticleGeneratorBase.h"
0007 
0008 #include <string>  // for string
0009 
0010 class PHCompositeNode;
0011 
0012 class PHG4ParticleGun : public PHG4ParticleGeneratorBase
0013 {
0014  public:
0015   PHG4ParticleGun(const std::string &name = "PGUN");
0016   ~PHG4ParticleGun() override {}
0017   int process_event(PHCompositeNode *topNode) override;
0018 };
0019 
0020 #endif