Skip to content
Snippets Groups Projects
Commit 7d0852b6 authored by Alexandru Bercuci's avatar Alexandru Bercuci
Browse files

fix naming in various print-outs

parent 49f89660
No related branches found
No related tags found
No related merge requests found
......@@ -298,7 +298,7 @@ void CbmTrdDigi::SetTriggerType(const int32_t ttype)
string CbmTrdDigi::ToString() const
{
stringstream ss;
ss << "CbmTrdDigi(" << (GetType() == eCbmTrdAsicType::kFASP ? "T)" : "R)")
ss << "CbmTrdDigi(" << (GetType() == eCbmTrdAsicType::kFASP ? "F)" : "S)")
<< " | moduleAddress=" << GetAddressModule() << " | layer=" << Layer() << " | moduleId=" << Module()
<< " | pad=" << GetAddressChannel() << " | time[ns]=" << std::fixed << std::setprecision(1) << GetTime();
if (GetType() == eCbmTrdAsicType::kFASP) {
......
......@@ -94,7 +94,7 @@ CbmTrdModuleRec* CbmTrdHitProducer::AddModule(Int_t address, TGeoPhysicalNode* n
<< moduleAddress << ". Module init failed!";
return NULL;
}
LOG(debug) << GetName() << "::AddModule(" << node->GetName() << " " << (moduleType < 9 ? 'R' : 'T') << "] mod["
LOG(info) << GetName() << "::AddModule(" << node->GetName() << " " << (moduleType < 9 ? '1' : '2') << "D] mod["
<< moduleAddress << "] ly[" << lyId << "] det[" << moduleAddress << "]";
CbmTrdModuleRec* module(nullptr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment