ATLAS Offline Software
Loading...
Searching...
No Matches
ITgcL0CandidateBuilderTool.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4#ifndef L0MUONS1TGCINTERFACES_ITGCL0CANDIDATEBUILDERTOOL_H
5#define L0MUONS1TGCINTERFACES_ITGCL0CANDIDATEBUILDERTOOL_H
6
7#include "GaudiKernel/EventContext.h"
8#include "GaudiKernel/IAlgTool.h"
12
13namespace L0Muon {
14
16class ITgcL0CandidateBuilderTool : virtual public IAlgTool {
17 public:
19
26 virtual StatusCode build(const TgcRdoContainer& rdos,
27 TgcL0CandidateContainer& candidates,
28 const EventContext& ctx) const = 0;
29
38 virtual StatusCode build(const TgcRdoContainer& rdos,
39 TgcL0CandidateContainer& candidates,
40 TgcL0SegmentContainer* segments,
41 const EventContext& ctx) const {
42 static_cast<void>(segments);
43 return build(rdos, candidates, ctx);
44 }
45};
46
47} // namespace L0Muon
48
49#endif
Interface for building pre-Inner-Coincidence TGC candidates.
DeclareInterfaceID(ITgcL0CandidateBuilderTool, 1, 1)
virtual StatusCode build(const TgcRdoContainer &rdos, TgcL0CandidateContainer &candidates, TgcL0SegmentContainer *segments, const EventContext &ctx) const
Build candidates and optionally expose projection segments.
virtual StatusCode build(const TgcRdoContainer &rdos, TgcL0CandidateContainer &candidates, const EventContext &ctx) const =0
Build candidates from TGC RDO data.
std::vector< TgcL0Segment > TgcL0SegmentContainer
std::vector< TgcL0Candidate > TgcL0CandidateContainer
Event-local candidate collection.