Skip to content
Snippets Groups Projects

Update L1Topo histograms

Merged Paula Martinez Suarez requested to merge paulama/athena:L1Topo-Run2Hist-20220318 into master
20 files
+ 139
140
Compare changes
  • Side-by-side
  • Inline
Files
20
@@ -71,10 +71,10 @@ TCS::StatusCode TCS::EnergyThreshold::process( const TCS::InputTOBArray & input,
jxe != jXEArray.end();
++jxe ) {
bool passed = (*jxe)->Et() >= jXEThr.thrValue100MeV();
bool passed = (*jxe)->Et2() >= std::pow(jXEThr.thrValue100MeV(), 2);
if (passed) {
counting++;
fillHist1D(m_histAccept[0], ((*jxe)->Et()/10.));
fillHist1D(m_histAccept[0], ((*jxe)->EtDouble()));
}
}
Loading