Skip to content

Commit 214575e

Browse files
committed
ITS3: remove newline from digiparams
Signed-off-by: Felix Schlepper <[email protected]>
1 parent 0cd2559 commit 214575e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ namespace o2::its3
2323
void DigiParams::print() const
2424
{
2525
// print settings
26-
LOGF(info, "ITS3 DigiParams settings:\n");
27-
LOGF(info, "Continuous readout : %s\n", isContinuous() ? "ON" : "OFF");
28-
LOGF(info, "Readout Frame Length(ns) : %f\n", getROFrameLength());
29-
LOGF(info, "Strobe delay (ns) : %f\n", getStrobeDelay());
30-
LOGF(info, "Strobe length (ns) : %f\n", getStrobeLength());
31-
LOGF(info, "Threshold (N electrons) : %d\n", getChargeThreshold());
32-
LOGF(info, "Min N electrons to account : %d\n", getMinChargeToAccount());
33-
LOGF(info, "Number of charge sharing steps : %d\n", getNSimSteps());
34-
LOGF(info, "ELoss to N electrons factor : %e\n", getEnergyToNElectrons());
35-
LOGF(info, "Noise level per pixel : %e\n", getNoisePerPixel());
26+
LOGF(info, "ITS3 DigiParams settings:");
27+
LOGF(info, "Continuous readout : %s", isContinuous() ? "ON" : "OFF");
28+
LOGF(info, "Readout Frame Length(ns) : %f", getROFrameLength());
29+
LOGF(info, "Strobe delay (ns) : %f", getStrobeDelay());
30+
LOGF(info, "Strobe length (ns) : %f", getStrobeLength());
31+
LOGF(info, "Threshold (N electrons) : %d", getChargeThreshold());
32+
LOGF(info, "Min N electrons to account : %d", getMinChargeToAccount());
33+
LOGF(info, "Number of charge sharing steps : %d", getNSimSteps());
34+
LOGF(info, "ELoss to N electrons factor : %e", getEnergyToNElectrons());
35+
LOGF(info, "Noise level per pixel : %e", getNoisePerPixel());
3636
LOGF(info, "Charge time-response:\n");
3737
getSignalShape().print();
3838
}

0 commit comments

Comments
 (0)