PartPropSvc.h
Go to the documentation of this file.
1 #ifndef __PARTPROPSVC_H__
2 #define __PARTPROPSVC_H__
3 
4 #include "GaudiKernel/Service.h"
6 #include "HepPDT/ParticleDataTable.hh"
7 #include "HepPDT/TableBuilder.hh"
8 
9 #include <vector>
10 #include <string>
11 #include <utility>
12 #include <iostream>
13 #include <memory>
14 
15 //------------------------------------------------------------------
16 //
17 // ClassName: PartPropSvc
18 //
19 // Description: This service provides access to particle properties.
20 // Uses HepPDT as the underlying layer
21 //
22 // Author: Charles Leggett
23 //
24 // Date: 3-8-2001
25 //
26 //------------------------------------------------------------------
27 
28 class PartPropSvc: public extends<Service,
29  IPartPropSvc> {
30 public:
31 
32  PartPropSvc( const std::string& name, ISvcLocator* svc );
33 
34  StatusCode initialize() override;
35  StatusCode finalize() override;
36 
37  // The table
38  HepPDT::ParticleDataTable *PDT() override;
39 
40  void setUnknownParticleHandler( HepPDT::ProcessUnknownID*,
41  const std::string&) override;
42 
43  // Destructor.
44  ~PartPropSvc() override = default;
45 
46 private:
47 
48  using inputFunPtr = bool(*)(std::istream&,HepPDT::TableBuilder&);
49 
52 
54  HepPDT::ProcessUnknownID* m_upid = nullptr;
56 
58 
60 
61  bool m_upid_local = false;
62 
63 };
64 
65 #endif
def initialize()
Definition: AnalysisTest.py:12
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
inputFunPtr parseTableType(const std::string &)
std::unique_ptr< HepPDT::ParticleDataTable > m_pdt
Definition: PartPropSvc.h:57
PartPropSvc(const std::string &name, ISvcLocator *svc)
Definition: PartPropSvc.cpp:25
STL class.
StatusCode finalize() override
HepPDT::ProcessUnknownID * m_upid
Definition: PartPropSvc.h:54
STL class.
const std::string & name() const override
Retrieve name of the service.
Definition: Service.cpp:319
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
bool(*)(std::istream &, HepPDT::TableBuilder &) inputFunPtr
Definition: PartPropSvc.h:48
bool m_upid_local
Definition: PartPropSvc.h:61
~PartPropSvc() override=default
HepPDT::ParticleDataTable * PDT() override
STL class.
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
StatusCode createTable()
std::vector< std::pair< std::string, inputFunPtr > > m_inputs
Definition: PartPropSvc.h:51
void setUnknownParticleHandler(HepPDT::ProcessUnknownID *, const std::string &) override
StringProperty m_pdtFiles
Definition: PartPropSvc.h:53
std::string m_upid_name
Definition: PartPropSvc.h:55