ATLAS Offline Software
Loading...
Searching...
No Matches
TrigSiSpacePointRetriever.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_TRIGSISPACEPOINTRETRIEVER_H
6#define JIVEXML_TRIGSISPACEPOINTRETRIEVER_H
7
8#include <string>
9
11
13
15
16class PixelID;
17class SCT_ID;
18
19namespace JiveXML{
20
21 class TrigSiSpacePointRetriever : virtual public IDataRetriever, public AthAlgTool {
22
23 public:
24
26 TrigSiSpacePointRetriever(const std::string& type, const std::string& name, const IInterface* parent);
27
29 virtual StatusCode retrieve(ToolHandle<IFormatTool> &FormatTool);
30
32 virtual std::string dataTypeName() const { return m_typeName; };
33
34 virtual StatusCode initialize();
35
36 private:
37
39 const std::string m_typeName;
40
41 int calcPixelLayer(const Identifier&);
42 int calcSCTLayer(const Identifier&);
43
46
49 };
50
51}
52#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...
TrigSiSpacePointRetriever(const std::string &type, const std::string &name, const IInterface *parent)
Standard Constructor.
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
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.
This is an Identifier helper class for the Pixel subdetector.
Definition PixelID.h:67
This is an Identifier helper class for the SCT subdetector.
Definition SCT_ID.h:68
This header is shared inbetween the C-style server thread and the C++ Athena ServerSvc.