ATLAS Offline Software
RPC_HitsTruthRelink.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef RPCHITSTRUTHRELINK_H
6 #define RPCHITSTRUTHRELINK_H
7 
8 // Base class include
9 #include "HitsTruthRelinkBase.h"
10 
12 
13 
15 {
16 public:
17  RPC_HitsTruthRelink(const std::string &name, ISvcLocator *pSvcLocator);
18 
19  virtual StatusCode initialize() override;
20  virtual StatusCode execute(const EventContext &ctx) const override;
21 
22 private:
23  SG::ReadHandleKey<RPCSimHitCollection> m_inputHitsKey {this, "InputHits", "RPC_HitsOLD", "Input RPC hits name"};
24  SG::WriteHandleKey<RPCSimHitCollection> m_outputHitsKey {this, "OutputHits", "RPC_Hits", "Output RPC hits name"};
25 };
26 
27 #endif
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition: StoreGate/StoreGate/ReadHandleKey.h:39
HitsTruthRelinkBase.h
SG::WriteHandleKey
Property holding a SG store/key/clid from which a WriteHandle is made.
Definition: StoreGate/StoreGate/WriteHandleKey.h:40
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
RPCSimHitCollection.h
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
HitsTruthRelinkBase
Definition: HitsTruthRelinkBase.h:15