Skip to content
Open
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
10 changes: 5 additions & 5 deletions Detectors/ITSMFT/common/simulation/src/Digitizer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ void Digitizer::process(const std::vector<Hit>* hits, int evID, int srcID)
{
// digitize single event, the time must have been set beforehand

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

// is there something to flush ?
if (mNewROFrame > mROFrameMin) {
Expand Down Expand Up @@ -182,7 +182,7 @@ void Digitizer::setEventTime(const o2::InteractionTimeRecord& irt)
mNewROFrame = nbc / mParams.getROFrameLengthInBC();
mIsBeforeFirstRO = false;
}
LOG(info) << " NewROFrame " << mNewROFrame << " nbc " << nbc;
LOG(debug) << " NewROFrame " << mNewROFrame << " nbc " << nbc;

// in continuous mode depends on starts of periodic readout frame
mCollisionTimeWrtROF += (nbc % mParams.getROFrameLengthInBC()) * o2::constants::lhc::LHCBunchSpacingNS;
Expand Down
12 changes: 6 additions & 6 deletions Detectors/Upgrades/ALICE3/TRK/simulation/src/Digitizer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ void Digitizer::process(const std::vector<Hit>* hits, int evID, int srcID)
{
// digitize single event, the time must have been set beforehand

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

std::cout << "Printing segmentation info: " << std::endl;
SegmentationChip::Print();
Expand Down Expand Up @@ -165,7 +165,7 @@ void Digitizer::setEventTime(const o2::InteractionTimeRecord& irt)

mNewROFrame = nbc / mParams.getROFrameLengthInBC();

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

// in continuous mode depends on starts of periodic readout frame
mCollisionTimeWrtROF += (nbc % mParams.getROFrameLengthInBC()) * o2::constants::lhc::LHCBunchSpacingNS;
Expand Down
8 changes: 4 additions & 4 deletions Detectors/Upgrades/ITS3/simulation/src/Digitizer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ void Digitizer::process(const std::vector<itsmft::Hit>* hits, int evID, int srcI
{
// digitize single event, the time must have been set beforehand

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

// is there something to flush ?
if (mNewROFrame > mROFrameMin) {
Expand Down