Skip to content
Snippets Groups Projects
Commit 05b96876 authored by Sergei Zharko's avatar Sergei Zharko Committed by Sergei Zharko
Browse files

Tracking detector interfaces update:

  - Replacement of property getters in derived classes with the station info structure filling at the interfaces initialization
  - Adding of geometry based TOF and TRD station property initialization (for now in a test mode with CbmTrackingDetectorInterfaceBase::kDebugGeoDefined = true)
parent 9d08f7a4
No related branches found
No related tags found
1 merge request!1917Update of tracking detector interfaces
...@@ -125,6 +125,19 @@ std::string CbmTrackingDetectorInterfaceBase::ToString() const ...@@ -125,6 +125,19 @@ std::string CbmTrackingDetectorInterfaceBase::ToString() const
table << setw(10) << IsTimeInfoProvided(iSt) << ' '; table << setw(10) << IsTimeInfoProvided(iSt) << ' ';
table << '\n'; table << '\n';
} }
table << "--------------\n";
for (int iSt = 0; iSt < GetNtrackingStations(); ++iSt) {
table << setw(5) << iSt << ' ';
table << setw(10) << fvStations[iSt].fZref << ' ';
table << setw(10) << fvStations[iSt].fZmin << ' ';
table << setw(10) << fvStations[iSt].fZmax << ' ';
table << setw(10) << fvStations[iSt].fXmin << ' ';
table << setw(10) << fvStations[iSt].fXmax << ' ';
table << setw(10) << fvStations[iSt].fYmin << ' ';
table << setw(10) << fvStations[iSt].fYmax << ' ';
table << setw(10) << IsTimeInfoProvided(iSt) << ' ';
table << '\n';
}
return table.str(); return table.str();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment