ATLAS Offline Software
Loading...
Searching...
No Matches
TrackParticleRetriever.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_TRACKPARTICLERETRIEVER_H
6#define JIVEXML_TRACKPARTICLERETRIEVER_H
7
10#include "GaudiKernel/ToolHandle.h"
11
12//Forward declarations
13
14namespace JiveXML{
15
33
34 class TrackParticleRetriever : virtual public IDataRetriever,
35 public AthAlgTool {
36
37 public:
38
40 TrackParticleRetriever(const std::string& type,const std::string& name,const IInterface* parent);
41
43 virtual StatusCode retrieve(ToolHandle<IFormatTool> &FormatTool);
44
46 virtual std::string dataTypeName() const { return m_typeName; };
47
48 private:
50 const std::string m_typeName;
51
52 //@name Property members
54
57 std::vector<std::string> m_OtherTrackCollections;
61 };
62
63}
64#endif
AthAlgTool(const std::string &type, const std::string &name, const IInterface *parent)
Constructor with parameters:
Interface for all DataRetriever classes, that extract event data from StoreGate and pass them on to a...
virtual std::string dataTypeName() const
Return the name of the data type.
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
std::string m_PriorityTrackCollection
First track collections to retrieve, shown as default in Atlantis.
const std::string m_typeName
The data type that is generated by this retriever.
bool m_doWriteHLT
Wether to write HLTAutoKey objects.
std::vector< std::string > m_OtherTrackCollections
Track collections to retrieve in the sequence they are given, all if empty.
TrackParticleRetriever(const std::string &type, const std::string &name, const IInterface *parent)
Standard Constructor.
This header is shared inbetween the C-style server thread and the C++ Athena ServerSvc.