Skip to content
Snippets Groups Projects

Adapt to changes to RICH DAQ parameters

Merged Christopher Rob Jones requested to merge jonrob/Lbcom:rich-adapt-param-change into master
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
@@ -91,7 +91,8 @@ namespace Rich::Future {
// checks
if ( !m_usedDets[rich] ) { info() << "Pixels for " << rich << " are disabled" << endmsg; }
// cached data
m_runClusterSplit[rich] = ( m_minClusSize[rich] > 1 || m_maxClusSize[rich] < Rich::DAQ::PMT::NumPixels );
m_runClusterSplit[rich] =
( m_minClusSize[rich] > 1 || m_maxClusSize[rich] < LHCb::RichSmartID::MaPMT::TotalPixels );
}
} );
}
@@ -135,7 +136,7 @@ namespace Rich::Future {
/// Maximum cluster size
Gaudi::Property<DetectorArray<unsigned int>> m_maxClusSize{
this, "MaxClusterSize", {Rich::DAQ::PMT::NumPixels, Rich::DAQ::PMT::NumPixels}};
this, "MaxClusterSize", {LHCb::RichSmartID::MaPMT::TotalPixels, LHCb::RichSmartID::MaPMT::TotalPixels}};
/// Allow pixels to be clustered across diagonals
Gaudi::Property<DetectorArray<bool>> m_allowDiags{this, "AllowDiagonalsInClusters", {false, false}};
Loading