Skip to content
Snippets Groups Projects

Remove unused features of TupleToolEventInfo

Merged Patrick Koppenburg requested to merge pkoppenb-TupleToolEventInfo into master
All threads resolved!
2 files
+ 0
7
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -45,9 +45,6 @@ DECLARE_COMPONENT( TupleToolEventInfo )
TupleToolEventInfo::TupleToolEventInfo( const std::string& type, const std::string& name, const IInterface* parent )
: TupleToolBase( type, name, parent ) {
declareInterface<IEventTupleTool>( this );
declareProperty( "InputLocation", m_pvLocation = LHCb::RecVertexLocation::Primary,
"PV location to be used. If empty, take default" );
declareProperty( "Mu", m_mu );
}
//=============================================================================
@@ -96,8 +93,6 @@ StatusCode TupleToolEventInfo::fill( Tuples::Tuple& tuple ) {
// Fill the tuple
if ( !m_mu.empty() ) test &= tuple->column( prefix + "Mu", m_mu[odin->runNumber()] );
test &= tuple->column( prefix + "runNumber", odin->runNumber() );
test &= tuple->column( prefix + "eventNumber", odin->eventNumber() );
test &= tuple->column( prefix + "BCID", odin->bunchId() );
Loading