File indexing completed on 2025-08-06 08:17:31
0001
0002
0003 #ifndef CALOEMBEDDING_HEPMCCOLLISIONVERTEX_H
0004 #define CALOEMBEDDING_HEPMCCOLLISIONVERTEX_H
0005
0006 #include <fun4all/SubsysReco.h>
0007
0008 #include <string>
0009
0010 class PHCompositeNode;
0011
0012 class HepMCCollisionVertex : public SubsysReco
0013 {
0014 public:
0015 HepMCCollisionVertex(const std::string &name = "HepMCCollisionVertex");
0016
0017 ~HepMCCollisionVertex() override = default;
0018
0019
0020
0021
0022
0023
0024 int InitRun(PHCompositeNode *topNode) override;
0025
0026
0027
0028
0029 int process_event(PHCompositeNode *topNode) override;
0030
0031 private:
0032 };
0033
0034 #endif