Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:18:34

0001 /*!
0002  *  \file       PHTrackSetMerging.h
0003  *  \brief      Base class for track container merging
0004  *  \author     Christof Roland <cer@mit.edu>
0005  */
0006 
0007 #ifndef TRACKRECO_PHTRACKSETCOPYMERGING_H
0008 #define TRACKRECO_PHTRACKSETCOPYMERGING_H
0009 
0010 // PHENIX includes
0011 #include "PHTrackSetMerging.h"
0012 
0013 // forward declarations
0014 class PHCompositeNode;
0015 
0016 //class SvtxClusterMap;
0017 class SvtxTrackMap;
0018 
0019 /// \class PHTrackSetMerging
0020 
0021 class PHTrackSetCopyMerging : public PHTrackSetMerging
0022 {
0023  public:
0024   PHTrackSetCopyMerging(const std::string &name = "PHTrackSetCopyMerging");
0025   ~PHTrackSetCopyMerging() override {}
0026 
0027   int Process(PHCompositeNode *topNode) override;
0028  protected:
0029 
0030   //  virtual int Setup(PHCompositeNode *topNode) override;
0031 
0032   //int End() override;
0033 
0034   // private:
0035 
0036 };
0037 
0038 #endif