Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 #include "TrackInfoContainer_v3.h"
0002 
0003 #include "SvtxTrackInfo.h"
0004 #include "SvtxTrackInfo_v3.h"
0005 
0006 #include <phool/PHObject.h>
0007 
0008 #include <climits>
0009 #include <map>
0010 
0011 TrackInfoContainer_v3::TrackInfoContainer_v3()
0012 {
0013   _clones = new TClonesArray("SvtxTrackInfo_v3");
0014   _clones->SetOwner();
0015   _clones->SetName("TrackInfoContainer_v3");
0016 }
0017 
0018 TrackInfoContainer_v3::~TrackInfoContainer_v3()
0019 {
0020   _clones->Clear("C");
0021 }
0022 
0023 void TrackInfoContainer_v3::identify(std::ostream& os) const
0024 {
0025   os << "TrackInfoContainer_v3 of size " << size() << std::endl;
0026 }
0027 
0028 void TrackInfoContainer_v3::Reset()
0029 {
0030   _clones->Clear("C");
0031 }