Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
StripSegmentTool.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 STRIPSEGMENTTOOL_H
6 #define STRIPSEGMENTTOOL_H
7 
9 #include "CLHEP/Random/RandFlat.h"
10 #include "CLHEP/Random/RandGauss.h"
12 #include "GaudiKernel/ServiceHandle.h"
13 #include "GaudiKernel/ToolHandle.h"
14 #include "GaudiKernel/ITHistSvc.h"
15 
24 
25 #include "RegSelLUT/RegSelSiLUT.h"
27 
33 
34 #include <Math/Vector3D.h>
35 #include <functional>
36 #include <algorithm>
37 #include <map>
38 #include <utility>
39 #include <cmath>
40 
41 struct Envelope_t{
42  float lower_r{FLT_MIN};
43  float upper_r{FLT_MAX};
44  float lower_eta{FLT_MIN};
45  float upper_eta{FLT_MAX};
46  float lower_z{FLT_MIN};
47  float upper_z{FLT_MAX};
48 };
49 
50 // namespace for the NSW LVL1 related classes
51 namespace NSWL1 {
52 
65  class StripSegmentTool: virtual public IStripSegmentTool,
66  public AthAlgTool {
67 
68  public:
69  StripSegmentTool(const std::string& type,
70  const std::string& name,
71  const IInterface* parent);
72  virtual ~StripSegmentTool()=default;
73  virtual StatusCode initialize() override;
74  virtual StatusCode find_segments( std::vector< std::unique_ptr<StripClusterData> >& ,const std::unique_ptr<Muon::NSW_TrigRawDataContainer>& ) const override;
76 
77  private:
78  ServiceHandle<Muon::IMuonIdHelperSvc> m_idHelperSvc {this, "MuonIdHelperSvc", "Muon::MuonIdHelperSvc/MuonIdHelperSvc"};
79  SG::ReadCondHandleKey<IRegSelLUTCondData> m_regSelTableKey{this, "RegSelLUT", "RegSelLUTCondData_sTGC", "sTGC Region Selector lookup table"};
80 
81  Gaudi::Property<std::string> m_sTgcSdoContainer{this, "sTGC_SdoContainerName", "sTGC_SDO", "Name of the sTGC SDO digit container"};
82  Gaudi::Property<int> m_rIndexBits {this, "rIndexBits", 8, "Number bits in R-index calculation"};
83  Gaudi::Property<int> m_dThetaBits {this, "dthetaBits", 5, "Number bits in dTheta calculation"};
84  Gaudi::Property<float> m_dtheta_min {this, "dthetaMin", -15., "Minimum allowed value for dtheta in mrad"};
85  Gaudi::Property<float> m_dtheta_max {this, "dthetaMax", 15., "Maximum allowed value for dtheta in mrad"};
86  Gaudi::Property<int> m_ridxScheme {this, "rIndexScheme", 1, "rIndex slicing scheme/ 0-->R / 1-->eta"};
87 
88  uint8_t findRIdx(const float val, const Envelope_t &env) const;
89  uint8_t findDtheta(const float) const;
90  }; // end of StripSegmentTool class
91 } // namespace NSWL1
92 #endif
NSWL1::StripSegmentTool
interface for the StripTDS tools
Definition: StripSegmentTool.h:66
NSWL1::StripSegmentTool::m_sTgcSdoContainer
Gaudi::Property< std::string > m_sTgcSdoContainer
Definition: StripSegmentTool.h:81
TriggerTypes.h
NSWL1::StripSegmentTool::findRIdx
uint8_t findRIdx(const float val, const Envelope_t &env) const
Definition: StripSegmentTool.cxx:67
NSWL1::StripSegmentTool::m_idHelperSvc
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
Definition: StripSegmentTool.h:78
tdr_compat_enum.h
xAOD::uint8_t
uint8_t
Definition: Muon_v1.cxx:557
NSWL1::StripSegmentTool::~StripSegmentTool
virtual ~StripSegmentTool()=default
IStripSegmentTool.h
sTgcReadoutElement.h
NSWL1::StripSegmentTool::m_ridxScheme
Gaudi::Property< int > m_ridxScheme
Definition: StripSegmentTool.h:86
RegSelSiLUT.h
emacs: this is -*- c++ -*-
NSWL1::StripSegmentTool::initialize
virtual StatusCode initialize() override
Definition: StripSegmentTool.cxx:17
NSWL1::StripSegmentTool::m_dtheta_max
Gaudi::Property< float > m_dtheta_max
Definition: StripSegmentTool.h:85
Envelope_t::upper_r
float upper_r
Definition: StripSegmentTool.h:43
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
NSWL1::StripSegmentTool::StripSegmentTool
StripSegmentTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition: StripSegmentTool.cxx:11
NSWL1::StripSegmentTool::FetchDetectorEnvelope
StatusCode FetchDetectorEnvelope(Envelope_t &env) const
Definition: StripSegmentTool.cxx:26
NSWL1::StripSegmentTool::m_rIndexBits
Gaudi::Property< int > m_rIndexBits
Definition: StripSegmentTool.h:82
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.h
test_pyathena.parent
parent
Definition: test_pyathena.py:15
Envelope_t::upper_z
float upper_z
Definition: StripSegmentTool.h:47
StripOfflineData.h
IRegSelLUTCondData.h
NSWL1::StripSegmentTool::m_dThetaBits
Gaudi::Property< int > m_dThetaBits
Definition: StripSegmentTool.h:83
Envelope_t::lower_r
float lower_r
Definition: StripSegmentTool.h:42
NSWL1::StripSegmentTool::m_dtheta_min
Gaudi::Property< float > m_dtheta_min
Definition: StripSegmentTool.h:84
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
NSWL1::StripSegmentTool::find_segments
virtual StatusCode find_segments(std::vector< std::unique_ptr< StripClusterData > > &, const std::unique_ptr< Muon::NSW_TrigRawDataContainer > &) const override
Definition: StripSegmentTool.cxx:99
MuonDetectorManager.h
NSWL1::StripSegmentTool::findDtheta
uint8_t findDtheta(const float) const
Definition: StripSegmentTool.cxx:90
SG::ReadCondHandleKey
Definition: ReadCondHandleKey.h:20
Envelope_t::upper_eta
float upper_eta
Definition: StripSegmentTool.h:45
NSWL1::IStripSegmentTool
interface for the Strip Cluster Tools
Definition: IStripSegmentTool.h:30
Pythia8_RapidityOrderMPI.val
val
Definition: Pythia8_RapidityOrderMPI.py:14
NSW_TrigRawDataContainer.h
Envelope_t::lower_eta
float lower_eta
Definition: StripSegmentTool.h:44
sTgcDigit.h
sTgcDigitContainer.h
PadTrigger.h
Envelope_t
Definition: StripSegmentTool.h:41
AthAlgTool
Definition: AthAlgTool.h:26
MuonSimDataCollection.h
python.DataFormatRates.env
env
Definition: DataFormatRates.py:32
Envelope_t::lower_z
float lower_z
Definition: StripSegmentTool.h:46
checker_macros.h
Define macros for attributes used to control the static checker.
NSWL1
A trigger trigger candidate for a stgc sector.
Definition: NSWL1Simulation.cxx:7
NSWL1::StripSegmentTool::m_regSelTableKey
SG::ReadCondHandleKey< IRegSelLUTCondData > m_regSelTableKey
Definition: StripSegmentTool.h:79
IMuonIdHelperSvc.h
MuonSimData.h
ServiceHandle< Muon::IMuonIdHelperSvc >