Skip to content
Snippets Groups Projects
Commit 1d8add71 authored by Patrick Koppenburg's avatar Patrick Koppenburg :leaves:
Browse files

Remove unused features of TupleToolEventInfo

parent c02f714e
No related branches found
No related tags found
No related merge requests found
......@@ -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() );
......
......@@ -51,8 +51,6 @@ public:
StatusCode fill( Tuples::Tuple& ) override;
private:
std::string m_pvLocation;
std::map<int, double> m_mu;
ILHCbMagnetSvc* m_magSvc;
typedef std::vector<std::string> AlgorithmNames;
Gaudi::Property<AlgorithmNames> m_algNames{this, "Algorithms"}; ///< List of algorithm(s) to include in timing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment