Skip to content
Snippets Groups Projects
Commit 0fca9c5a authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

TrigEFMissingET: Remove INFO printout

Remove INFO printout during event processing.
parent acb41c04
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ StatusCode EFMissingETAlgMT::execute( const EventContext& context ) const { ...@@ -97,7 +97,7 @@ StatusCode EFMissingETAlgMT::execute( const EventContext& context ) const {
auto EF_XS = Monitored::Scalar( "EF_XS", toLinGeV( std::hypot( met->ex(), met->ey() ) ) / toLinGeV( met->sumEt() ) ); auto EF_XS = Monitored::Scalar( "EF_XS", toLinGeV( std::hypot( met->ex(), met->ey() ) ) / toLinGeV( met->sumEt() ) );
auto EF_MET_phi = Monitored::Scalar( "EF_MET_phi", std::atan2( met->ey(), met->ex() ) ); auto EF_MET_phi = Monitored::Scalar( "EF_MET_phi", std::atan2( met->ey(), met->ex() ) );
ATH_MSG_INFO("Event MET: " << std::hypot( met->ex(), met->ey() ) << " MeV"); ATH_MSG_DEBUG("Event MET: " << std::hypot( met->ex(), met->ey() ) << " MeV");
auto monitorIt = Monitored::Group( m_monTool, auto monitorIt = Monitored::Group( m_monTool,
totalTimer, loopTimer, totalTimer, loopTimer,
......
...@@ -42,7 +42,6 @@ StatusCode EFMissingETFromCellsMT::update( xAOD::TrigMissingET */*met*/, ...@@ -42,7 +42,6 @@ StatusCode EFMissingETFromCellsMT::update( xAOD::TrigMissingET */*met*/,
auto countUsedCells = Monitored::Scalar<unsigned>( "UsedCells", 0 ); auto countUsedCells = Monitored::Scalar<unsigned>( "UsedCells", 0 );
// now it is time to iterate over the cells // now it is time to iterate over the cells
ATH_MSG_INFO("About to loop over cells from CellMET");
int nCells(0), nZeroCells(0); int nCells(0), nZeroCells(0);
for ( const CaloCell* cell: *caloCellsHandle ) { for ( const CaloCell* cell: *caloCellsHandle ) {
nCells++; nCells++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment