ATLAS Offline Software
Loading...
Searching...
No Matches
PtFromRadius.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGL2MUONSA_PTFROMRADIUS_H
6#define TRIGL2MUONSA_PTFROMRADIUS_H
7
9
10#include "GaudiKernel/ServiceHandle.h"
11
12#include "TrackData.h"
13#include "PtBarrelLUTSvc.h"
14#include "PtBarrelLUT.h"
15
16namespace TrigL2MuonSA {
17
19{
20 public:
21
22 PtFromRadius(const std::string& type,
23 const std::string& name,
24 const IInterface* parent);
25
26 void setMCFlag(bool m_use_mcLUT,
27 const TrigL2MuonSA::PtBarrelLUTSvc* ptBarrelLUTSvc);
28
29 public:
30
31 // For Barrel
32 StatusCode setPt(TrigL2MuonSA::TrackPattern& trackPattern) const;
33
34 private:
35 bool m_use_mcLUT{false};
36
37 const ToolHandle<PtBarrelLUT>* m_ptBarrelLUT{nullptr};
38};
39
40} // namespace PtFromRadius
41
42#endif // PTFROMRADIUS_H
AthAlgTool(const std::string &type, const std::string &name, const IInterface *parent)
Constructor with parameters:
void setMCFlag(bool m_use_mcLUT, const TrigL2MuonSA::PtBarrelLUTSvc *ptBarrelLUTSvc)
const ToolHandle< PtBarrelLUT > * m_ptBarrelLUT
StatusCode setPt(TrigL2MuonSA::TrackPattern &trackPattern) const
PtFromRadius(const std::string &type, const std::string &name, const IInterface *parent)