Warning, file /coresoftware/offline/framework/fun4allraw/mvtx_decoder/StrobeData.cc was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #include "StrobeData.h"
0002 #include <iostream>
0003
0004 using namespace mvtx;
0005
0006
0007
0008 StrobeData::~StrobeData()
0009 {
0010 }
0011
0012
0013
0014 void StrobeData::clear()
0015 {
0016 ir.clear();
0017 hasCDW = false;
0018 calWord = {};
0019
0020 for ( auto&& hit : hit_vector )
0021 {
0022 delete hit;
0023 }
0024 hit_vector.clear();
0025 }
0026