The Gaudi Framework  master (181af51f)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages Concepts
IPartPropSvc.h
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 1998-2025 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "LICENSE". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
11#pragma once
12
14#include <map>
15
16namespace HepPDT {
17 class ParticleDataTable;
18 class ProcessUnknownID;
19} // namespace HepPDT
20
21/* @class IPartPropSvc IPartPropSvc.h GaudiKernel/IPartPropSvc.h
22
23 This class is an interface to the PartPropSvc.
24
25 @author Charles Leggett
26
27*/
28class GAUDI_API IPartPropSvc : virtual public IService {
29
30public:
33
34 virtual HepPDT::ParticleDataTable* PDT() = 0;
35 virtual void setUnknownParticleHandler( HepPDT::ProcessUnknownID*, const std::string& ) = 0;
36};
#define GAUDI_API
Definition Kernel.h:49
DeclareInterfaceID(IPartPropSvc, 2, 0)
InterfaceID.
virtual void setUnknownParticleHandler(HepPDT::ProcessUnknownID *, const std::string &)=0
virtual HepPDT::ParticleDataTable * PDT()=0
General service interface definition.
Definition IService.h:26