Skip to content
Snippets Groups Projects
Commit b94e0a5c authored by Christopher Rob Jones's avatar Christopher Rob Jones
Browse files

Merge branch 'sponce_cleanupMuonPad2MCTool' into 'master'

Dropped unused interface IMuonPad2MCTool

See merge request !3823
parents 97950fd7 b99d18f3
No related branches found
Tags v45r4
1 merge request!3823Dropped unused interface IMuonPad2MCTool
Pipeline #4701163 passed
......@@ -24,7 +24,6 @@
#include "MCInterfaces/IForcedBDecayTool.h"
#include "MCInterfaces/IMCDecayFinder.h"
#include "MCInterfaces/IMCReconstructible.h"
#include "MCInterfaces/IMuonPad2MCTool.h"
#include "MCInterfaces/ISiDepositedCharge.h"
#include "MCInterfaces/IVisPrimVertTool.h"
......
......@@ -19,7 +19,6 @@
<class name = "IMCParticleSelector" />
<class name = "IMCReconstructed" />
<class name = "IMCReconstructible" />
<class name = "IMuonPad2MCTool" />
<class name = "IPrintMCDecayTreeTool" />
<class name = "Rich::MC::IMCTruthTool" />
<class name = "ISiDepositedCharge" />
......
/*****************************************************************************\
* (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration *
* *
* This software is distributed under the terms of the GNU General Public *
* Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". *
* *
* In applying this licence, CERN does not waive the privileges and immunities *
* granted to it by virtue of its status as an Intergovernmental Organization *
* or submit itself to any jurisdiction. *
\*****************************************************************************/
#ifndef IMUONPAD2MCTOOL_H
#define IMUONPAD2MCTOOL_H 1
// Include files
// from Gaudi
#include "Detector/Muon/TileID.h"
#include "GaudiAlg/GaudiTool.h"
#include "GaudiKernel/IAlgTool.h"
namespace LHCb {
class MCParticle;
}
/** @class IMuonPad2MCTool IMuonPad2MCTool.h
*
*
* @author Alessia Satta
* @date 2006-12-06
*/
struct IMuonPad2MCTool : extend_interfaces<IAlgTool> {
DeclareInterfaceID( IMuonPad2MCTool, 2, 0 );
virtual LHCb::MCParticle* Pad2MC( LHCb::Detector::Muon::TileID value ) const = 0;
virtual bool isXTalk( LHCb::Detector::Muon::TileID value, LHCb::MCParticle*& pp ) const = 0;
virtual LHCb::MCParticle* PadNoXtalk2MC( LHCb::Detector::Muon::TileID value ) const = 0;
};
#endif // IMUONPAD2MCTOOL_H
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