Skip to content
Snippets Groups Projects

add ATLAS_CHECK_THREAD_SAFETY to TrkVertexWeightCalculators

Files
11
/*
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
*/
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
@@ -11,44 +11,48 @@
@@ -11,44 +11,48 @@
#include "GaudiKernel/IAlgTool.h"
#include "GaudiKernel/IAlgTool.h"
//xAOD include
// xAOD include
#include "xAODTracking/VertexFwd.h"
#include "xAODTracking/VertexAuxContainer.h"
#include "xAODTracking/TrackParticleFwd.h"
#include "xAODTracking/TrackParticleFwd.h"
 
#include "xAODTracking/VertexAuxContainer.h"
 
#include "xAODTracking/VertexFwd.h"
namespace Trk
namespace Trk {
{
static const InterfaceID IID_IVertexWeightCalculator("IVertexWeightCalculator",
static const InterfaceID IID_IVertexWeightCalculator("IVertexWeightCalculator", 1, 0);
1,
0);
/**
@class IVertexWeightCalculaculator
@brief Interface class for signal vertex selection.
For more detailed information, take a look at the header file of the actual
implementation files.
---------------------------------------------------
Changes:
David Shope <david.richard.shope@cern.ch> (2016-06-01)
/**
 
@class IVertexWeightCalculaculator
 
@brief Interface class for signal vertex selection.
EDM Migration to xAOD - remove method using VxCandidate
For more detailed information, take a look at the header file of the actual
 
implementation files.
*/
---------------------------------------------------
 
Changes:
class IVertexWeightCalculator : virtual public IAlgTool {
David Shope <david.richard.shope@cern.ch> (2016-06-01)
 
EDM Migration to xAOD - remove method using VxCandidate
public:
*/
/** Virtual destructor */
virtual ~IVertexWeightCalculator(){};
/** AlgTool interface methods */
class IVertexWeightCalculator : virtual public IAlgTool
static const InterfaceID& interfaceID() { return IID_IVertexWeightCalculator; };
{
/** Interface for @c xAOD::Vertex */
public:
virtual double estimateSignalCompatibility(const xAOD::Vertex& vertex) = 0;
/** Virtual destructor */
 
virtual ~IVertexWeightCalculator() = default;
 
/** AlgTool interface methods */
 
static const InterfaceID& interfaceID()
 
{
 
return IID_IVertexWeightCalculator;
};
};
 
 
/** Interface for @c xAOD::Vertex */
 
virtual double estimateSignalCompatibility(
 
const xAOD::Vertex& vertex) const = 0;
 
};
}
}
#endif
#endif
Loading