ATLAS Offline Software
Loading...
Searching...
No Matches
TruthMuonTrackRetriever.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef JIVEXML_TRUTHMUONTRACKRETRIEVER_H
6#define JIVEXML_TRUTHMUONTRACKRETRIEVER_H
7
8#include <string>
9
12#include "GaudiKernel/ToolHandle.h"
13
14namespace HepPDT{
15 class ParticleDataTable;
16}
17
18
19namespace JiveXML{
20
37
38 class TruthMuonTrackRetriever : public extends<AthAlgTool, IDataRetriever> {
39
40 public:
41
43 TruthMuonTrackRetriever(const std::string& type ,const std::string& name,const IInterface* parent);
44
46 virtual StatusCode retrieve(ToolHandle<IFormatTool> &FormatTool);
47
49 virtual std::string dataTypeName() const { return m_typeName; };
50
52 StatusCode initialize();
53
54 private:
56 const std::string m_typeName;
57
59 std::vector<std::string> m_TrackRecCollNames;
60
61 };
62
63}
64#endif
65
StatusCode initialize()
Default AthAlgTool methods.
const std::string m_typeName
The data type that is generated by this retriever.
virtual std::string dataTypeName() const
Return the name of the data type.
TruthMuonTrackRetriever(const std::string &type, const std::string &name, const IInterface *parent)
Standard Constructor.
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
std::vector< std::string > m_TrackRecCollNames
A list of StoreGate names to probe in this order for the muon record collecton.
This header is shared inbetween the C-style server thread and the C++ Athena ServerSvc.