Skip to content
Snippets Groups Projects
Commit 4f878df0 authored by Christopher Rob Jones's avatar Christopher Rob Jones
Browse files

RICH: Add time window parameters to info printout when enabled

parent 2cd2d3d3
No related branches found
No related tags found
No related merge requests found
Pipeline #6355852 passed
......@@ -109,7 +109,9 @@ namespace Rich::Future::Rec {
// loop over RICHes
for ( const auto rich : Rich::detectors() ) {
m_timeWindowSIMD[rich] = SIMDFP( m_timeWindow[rich] );
if ( m_enable4D[rich] ) { info() << "4D photon reconstruction enabled for " << rich << endmsg; }
if ( m_enable4D[rich] ) {
info() << "4D photons enabled for " << rich << " | Window = +- " << m_timeWindow[rich] << " ns" << endmsg;
}
}
// loop over radiators
for ( const auto rad : activeRadiators() ) {
......
......@@ -60,7 +60,10 @@ namespace Rich::Future::Rec {
Rich::Utils::RichSmartIDs::addConditionDerivation( this );
// loop over RICHes
for ( const auto rich : Rich::detectors() ) {
if ( m_enable4D[rich] ) { info() << "4D pixel reconstruction enabled for " << rich << endmsg; }
if ( m_enable4D[rich] ) {
info() << "4D pixels enabled for " << rich << " | Window = " << m_avHitTime[rich] << " +- "
<< m_timeWindow[rich] << " ns" << endmsg;
}
}
// force debugging output
// return setProperty( "OutputLevel", MSG::VERBOSE );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment