Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ struct TrackDataExtended {
/// Structure filled for each track with track quality information and a vector with TPCClusterResiduals
struct TrackData {
o2::dataformats::GlobalTrackID gid{}; ///< global track ID for seeding track
o2::track::TrackPar par{}; ///< ITS track at inner TPC radius
o2::track::TrackParCov par{}; ///< ITS track at inner TPC radius
float dEdxTPC{}; ///< TPC dEdx information
float chi2TPC{}; ///< chi2 of TPC track
float chi2ITS{}; ///< chi2 of ITS track
Expand Down Expand Up @@ -226,7 +226,7 @@ struct TrackData {
}
float getMultStackPacked(int stack) const { return multStack[stack]; }

ClassDefNV(TrackData, 10);
ClassDefNV(TrackData, 11);
};

/// \class TrackInterpolation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@
#pragma link C++ class o2::conf::ConfigurableParamHelper < o2::tpc::SpacePointsCalibConfParam> + ;
#pragma link C++ struct o2::tpc::SpacePointsCalibConfParam;

#pragma read sourceClass = "o2::tpc::TrackData" targetClass = "o2::tpc::TrackData" source = "o2::track::TrackPar par" version = "[-10]" target = "par" code = "{}";

#endif
Loading