11/* *******************************************************************************
2- * Copyright (C) 2014-2023 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
2+ * Copyright (C) 2014-2024 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
33 * *
44 * This software is distributed under the terms of the *
55 * GNU Lesser General Public Licence (LGPL) version 3, *
@@ -31,9 +31,9 @@ void MQRecoTask<TestDetectorFlatBuffers>::Exec(Option_t* opt)
3131 new ((*fRecoTask .fDigiArray )[it - digis->begin ()])
3232 FairTestDetectorDigi ((*it)->x (), (*it)->y (), (*it)->z (), (*it)->timestamp ());
3333 static_cast <FairTestDetectorDigi*>(((*fRecoTask .fDigiArray )[it - digis->begin ()]))
34- ->SetTimeStampError ((*it)->timestampError ());
34+ ->SetTimeStampError ((*it)->timestamp_error ());
3535 // LOG(info) << (*it)->x() << " " << (*it)->y() << " " << (*it)->z() << " " << (*it)->timestamp() << " " <<
36- // (*it)->timestampError ();
36+ // (*it)->timestamp_error ();
3737 }
3838
3939 if (!fRecoTask .fDigiArray ) {
@@ -53,16 +53,16 @@ void MQRecoTask<TestDetectorFlatBuffers>::Exec(Option_t* opt)
5353 // LOG(warn) << " " << hit->GetDetectorID() << " " << hit->GetX() << " " << hit->GetY() << " " << hit->GetZ() <<
5454 // " " << hit->GetDx() << " " << hit->GetDy() << " " << hit->GetDz();
5555 TestDetectorFlat::HitBuilder hb (*builder);
56- hb.add_detID (hit->GetDetectorID ()); // detID :int
57- hb.add_mcIndex (hit->GetRefIndex ()); // GetRefIndex:int
58- hb.add_x (hit->GetX ()); // x:double
59- hb.add_y (hit->GetY ()); // y:double
60- hb.add_z (hit->GetZ ()); // z:double
61- hb.add_dx (hit->GetDx ()); // dx:double
62- hb.add_dy (hit->GetDy ()); // dy:double
63- hb.add_dz (hit->GetDz ()); // dz:double
64- hb.add_timestamp (hit->GetTimeStamp ()); // timestamp:double
65- hb.add_timestampError (hit->GetTimeStampError ()); // timestampError :double
56+ hb.add_det_id (hit->GetDetectorID ()); // det_id :int
57+ hb.add_mc_index (hit->GetRefIndex ()); // GetRefIndex:int
58+ hb.add_x (hit->GetX ()); // x:double
59+ hb.add_y (hit->GetY ()); // y:double
60+ hb.add_z (hit->GetZ ()); // z:double
61+ hb.add_dx (hit->GetDx ()); // dx:double
62+ hb.add_dy (hit->GetDy ()); // dy:double
63+ hb.add_dz (hit->GetDz ()); // dz:double
64+ hb.add_timestamp (hit->GetTimeStamp ()); // timestamp:double
65+ hb.add_timestamp_error (hit->GetTimeStampError ()); // timestamp_error :double
6666 hits[i] = hb.Finish ();
6767 }
6868 auto hvector = builder->CreateVector (hits, numEntries);
0 commit comments