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