Skip to content

Commit ddcdd1f

Browse files
committed
reduce verbosity of ITS/MFT digitizer
1 parent c21d7d7 commit ddcdd1f

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

Detectors/ITSMFT/common/simulation/src/Digitizer.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ void Digitizer::process(const std::vector<Hit>* hits, int evID, int srcID)
108108
{
109109
// digitize single event, the time must have been set beforehand
110110

111-
LOG(info) << "Digitizing " << mGeometry->getName() << " hits of entry " << evID << " from source "
112-
<< srcID << " at time " << mEventTime << " ROFrame= " << mNewROFrame << ")"
113-
<< " cont.mode: " << isContinuous()
114-
<< " Min/Max ROFrames " << mROFrameMin << "/" << mROFrameMax;
111+
LOG(debug) << "Digitizing " << mGeometry->getName() << " hits of entry " << evID << " from source "
112+
<< srcID << " at time " << mEventTime << " ROFrame= " << mNewROFrame << ")"
113+
<< " cont.mode: " << isContinuous()
114+
<< " Min/Max ROFrames " << mROFrameMin << "/" << mROFrameMax;
115115

116116
// is there something to flush ?
117117
if (mNewROFrame > mROFrameMin) {
@@ -164,7 +164,7 @@ void Digitizer::setEventTime(const o2::InteractionTimeRecord& irt)
164164
mNewROFrame = nbc / mParams.getROFrameLengthInBC();
165165
mIsBeforeFirstRO = false;
166166
}
167-
LOG(info) << " NewROFrame " << mNewROFrame << " nbc " << nbc;
167+
LOG(debug) << " NewROFrame " << mNewROFrame << " nbc " << nbc;
168168

169169
// in continuous mode depends on starts of periodic readout frame
170170
mCollisionTimeWrtROF += (nbc % mParams.getROFrameLengthInBC()) * o2::constants::lhc::LHCBunchSpacingNS;

Detectors/Upgrades/ALICE3/TRK/simulation/src/Digitizer.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ void Digitizer::process(const std::vector<Hit>* hits, int evID, int srcID)
103103
{
104104
// digitize single event, the time must have been set beforehand
105105

106-
LOG(info) << " Digitizing " << mGeometry->getName() << " (ID: " << mGeometry->getDetID()
107-
<< ") hits of entry " << evID << " from source " << srcID
108-
<< " at time " << mEventTime << " ROFrame= " << mNewROFrame << ")"
109-
<< " cont.mode: " << isContinuous()
110-
<< " Min/Max ROFrames " << mROFrameMin << "/" << mROFrameMax;
106+
LOG(debug) << " Digitizing " << mGeometry->getName() << " (ID: " << mGeometry->getDetID()
107+
<< ") hits of entry " << evID << " from source " << srcID
108+
<< " at time " << mEventTime << " ROFrame= " << mNewROFrame << ")"
109+
<< " cont.mode: " << isContinuous()
110+
<< " Min/Max ROFrames " << mROFrameMin << "/" << mROFrameMax;
111111

112112
std::cout << "Printing segmentation info: " << std::endl;
113113
SegmentationChip::Print();
@@ -159,7 +159,7 @@ void Digitizer::setEventTime(const o2::InteractionTimeRecord& irt)
159159

160160
mNewROFrame = nbc / mParams.getROFrameLengthInBC();
161161

162-
LOG(info) << " NewROFrame " << mNewROFrame << " = " << nbc << "/" << mParams.getROFrameLengthInBC() << " (nbc/mParams.getROFrameLengthInBC()";
162+
LOG(debug) << " NewROFrame " << mNewROFrame << " = " << nbc << "/" << mParams.getROFrameLengthInBC() << " (nbc/mParams.getROFrameLengthInBC()";
163163

164164
// in continuous mode depends on starts of periodic readout frame
165165
mCollisionTimeWrtROF += (nbc % mParams.getROFrameLengthInBC()) * o2::constants::lhc::LHCBunchSpacingNS;

Detectors/Upgrades/ITS3/simulation/src/Digitizer.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ void Digitizer::process(const std::vector<itsmft::Hit>* hits, int evID, int srcI
7676
{
7777
// digitize single event, the time must have been set beforehand
7878

79-
LOG(info) << "Digitizing " << mGeometry->getName() << " hits of entry " << evID << " from source "
80-
<< srcID << " at time " << mEventTime << " ROFrame = " << mNewROFrame << ")"
81-
<< " cont.mode: " << isContinuous()
82-
<< " Min/Max ROFrames " << mROFrameMin << "/" << mROFrameMax;
79+
LOG(debug) << "Digitizing " << mGeometry->getName() << " hits of entry " << evID << " from source "
80+
<< srcID << " at time " << mEventTime << " ROFrame = " << mNewROFrame << ")"
81+
<< " cont.mode: " << isContinuous()
82+
<< " Min/Max ROFrames " << mROFrameMin << "/" << mROFrameMax;
8383

8484
// is there something to flush ?
8585
if (mNewROFrame > mROFrameMin) {

0 commit comments

Comments
 (0)