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 JiveXML{
15
32
33 class TruthMuonTrackRetriever : public extends<AthAlgTool, IDataRetriever> {
34
35 public:
36
38 TruthMuonTrackRetriever(const std::string& type ,const std::string& name,const IInterface* parent);
39
41 virtual StatusCode retrieve(ToolHandle<IFormatTool> &FormatTool);
42
44 virtual std::string dataTypeName() const { return m_typeName; };
45
47 StatusCode initialize();
48
49 private:
51 const std::string m_typeName;
52
54 std::vector<std::string> m_TrackRecCollNames;
55
56 };
57
58}
59#endif
60
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.