ATLAS Offline Software
TGCOutputModifier.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // First the corresponding header.
7 
11 
12 namespace {
15 }
16 
17 namespace LVL1TGCTrigger {
18 
19  TGCOutputModifier::TGCOutputModifier( const std::string& name, ISvcLocator* pSvcLocator )
20  :
21  AthReentrantAlgorithm(name, pSvcLocator)
22  {
23  }
24 
26 
27 
28 
31  {
32  ATH_MSG_INFO( "=======================================" );
33  ATH_MSG_INFO( "Initialisation for TGCOutputModifier" );
34  ATH_MSG_INFO( "NSWVetoMode="<<m_nswVetoMode.value());
35  ATH_MSG_INFO( "EmulateA="<<m_emulateA.value());
36  ATH_MSG_INFO( "EmulateC="<<m_emulateC.value());
37  ATH_MSG_INFO( "EtaBoundary1="<<m_etaBoundary1.value() );
38  ATH_MSG_INFO( "DeltaEtaCut1="<<m_deltaEtaCut1.value() );
39  ATH_MSG_INFO( "DeltaPhiCut1="<<m_deltaPhiCut1.value() );
40  ATH_MSG_INFO( "DeltaThetaCut1="<<m_deltaThetaCut1.value() );
41  ATH_MSG_INFO( "EtaBoundary2="<<m_etaBoundary2.value() );
42  ATH_MSG_INFO( "DeltaEtaCut2="<<m_deltaEtaCut2.value() );
43  ATH_MSG_INFO( "DeltaPhiCut2="<<m_deltaPhiCut2.value() );
44  ATH_MSG_INFO( "DeltaThetaCut2="<<m_deltaThetaCut2.value() );
45  ATH_MSG_INFO( "InputMuctpiLocation="<<m_inputKey.key() );
46  ATH_MSG_INFO( "OutputMuctpiLocation="<<m_outputKey.key() );
47  ATH_MSG_INFO( "MuonSegmentContainer="<<m_musegKey.key() );
48  ATH_MSG_INFO( "=======================================" );
49 
52  ATH_CHECK(m_recTGCRoiTool.retrieve());
54  return StatusCode::SUCCESS;
55  }
56 
58  StatusCode TGCOutputModifier::execute(const EventContext& eventContext) const
59  {
61  if(!rh_muctpiTgc.isValid()){
62  ATH_MSG_ERROR("Cannot retrieve LVL1MUONIF::Lvl1MuCTPIInputPhase1");
63  return StatusCode::FAILURE;
64  }
65  const LVL1MUONIF::Lvl1MuCTPIInputPhase1* inTgc2Muctpi = rh_muctpiTgc.cptr();
66 
67  std::vector<const xAOD::MuonSegment*> muSegDataColl;
68  if( m_nswVetoMode.value() ){
70  if(!rh_museg.isValid()){
71  ATH_MSG_ERROR("Cannot retrieve xAOD::MuonSegmentContainer");
72  return StatusCode::FAILURE;
73  }
74  const xAOD::MuonSegmentContainer* muSegContainer = rh_museg.cptr();
75  for(auto seg : *muSegContainer){
76  if(seg->chamberIndex() != ChIdx::EIS && seg->chamberIndex() != ChIdx::EIL &&
77  seg->chamberIndex() != ChIdx::CSS && seg->chamberIndex() != ChIdx::CSL ) continue;
78  muSegDataColl.push_back(seg);
79  }
80  }
81 
83  ATH_CHECK(wh_muctpiTgc.record(std::make_unique<LVL1MUONIF::Lvl1MuCTPIInputPhase1>()));
84  LVL1MUONIF::Lvl1MuCTPIInputPhase1* outTgc2Muctpi = wh_muctpiTgc.ptr();
85 
88  LVL1MUONIF::Lvl1MuCTPIInputPhase1::MuonSystem::Forward};
89  for(auto isys : tgc_systems){
90  auto data = &inTgc2Muctpi->getData(isys); // const std::vector<Lvl1MuVectWithBC>&
91  for(auto bcmu : *data){ // Lvl1MuVectWithBC
92  int bcid = bcmu.first;
93  auto muvec = bcmu.second; // Lvl1MuVect
94  for(size_t i = 0 ; i < muvec.size() ; i++){ // i = system index = MaxSectors * Side + Sectors
95  auto sectorData = muvec.at(i).get();// std::shared_ptr <Lvl1MuSectorLogicDataPhase1>
96  if(!sectorData){
97  ATH_MSG_WARNING("sectorData is null!");
98  continue;
99  }
102  size_t isub = (i<numberOfSectors)
103  ?(LVL1MUONIF::Lvl1MuCTPIInputPhase1::MuonSubSystem::C_side):(LVL1MUONIF::Lvl1MuCTPIInputPhase1::MuonSubSystem::A_side);
104  size_t isec = i % numberOfSectors;
105  if(i != inTgc2Muctpi->getSystemIndex(isys,isub,isec)){
106  ATH_MSG_WARNING("System Index Mismatch!!");
107  continue;
108  }
110  Copy(sectorData,sldata);
111  Update(muSegDataColl,sldata,isys,isub,isec);
112  outTgc2Muctpi->setSectorLogicData(sldata,isys,isub,isec,bcid);
113  }else if(isys==LVL1MUONIF::Lvl1MuCTPIInputPhase1::MuonSystem::Forward){
115  size_t isub = (i<numberOfSectors)
116  ?(LVL1MUONIF::Lvl1MuCTPIInputPhase1::MuonSubSystem::C_side):(LVL1MUONIF::Lvl1MuCTPIInputPhase1::MuonSubSystem::A_side);
117  size_t isec = i % numberOfSectors;
118  if(i != inTgc2Muctpi->getSystemIndex(isys,isub,isec)){
119  ATH_MSG_WARNING("System Index Mismatch!!");
120  continue;
121  }
123  Copy(sectorData,sldata);
124  Update(muSegDataColl,sldata,isys,isub,isec);
125  outTgc2Muctpi->setSectorLogicData(sldata,isys,isub,isec,bcid);
126  }else{
127  ATH_MSG_WARNING("Unknown system. Barrel? isys="<<isys);
128  }
129  }
130  }
131  }
132 
133  return StatusCode::SUCCESS;
134  }
135 
137  LVL1MUONIF::Lvl1MuSectorLogicDataPhase1& sldataNew ) const
138  {
139  sldataNew.clear2candidatesInSector();
140  if(sldataOrg->is2candidatesInSector()) sldataNew.set2candidatesInSector();
141  sldataNew.bcid(sldataOrg->bcid());
142  for (unsigned int icand=0;
143  icand<LVL1MUONIF::NCAND[LVL1MUONIF::Lvl1MuCTPIInputPhase1::Endcap];icand++){
144  sldataNew.roi(icand,sldataOrg->roi(icand));
145  sldataNew.pt(icand,sldataOrg->pt(icand));
146  sldataNew.ovl(icand,sldataOrg->ovl(icand));
147  sldataNew.charge(icand,sldataOrg->charge(icand));
148  sldataNew.bw2or3(icand,sldataOrg->bw2or3(icand));
149  sldataNew.goodmf(icand,sldataOrg->goodmf(icand));
150  sldataNew.innercoin(icand,sldataOrg->innercoin(icand));
151  sldataNew.clear2candidates(icand);
152  if(sldataOrg->is2candidates(icand))sldataNew.set2candidates(icand);
153  }
154  }
155  void TGCOutputModifier::Update(const std::vector<const xAOD::MuonSegment*>& muSegDataColl,
157  size_t systemId,
158  size_t subSystemId,
159  size_t sectorId) const
160  {
161  if(subSystemId==LVL1MUONIF::Lvl1MuCTPIInputPhase1::idSideA() && !m_emulateA.value()) return;
162  if(subSystemId==LVL1MUONIF::Lvl1MuCTPIInputPhase1::idSideC() && !m_emulateC.value()) return;
163  int tmpside = (subSystemId==LVL1MUONIF::Lvl1MuCTPIInputPhase1::idSideA())?(1):(0);
164  int tmpsector = sectorId;
166  unsigned int sectorAddress = (tmpside) + (tmpsector<<1) + (tmptype<<6);
167  for (unsigned int icand=0;
168  icand<LVL1MUONIF::NCAND[LVL1MUONIF::Lvl1MuCTPIInputPhase1::Endcap];icand++){
169  if(sldata.pt(icand)<0)continue;
170  int roi = sldata.roi(icand);
171  unsigned long int roiWord = (roi<<2)+(sectorAddress<<14);
173  if( !m_recTGCRoiTool->roiData(roiWord,roiData).isSuccess() )continue;
174  TVector3 roiPos;
175  roiPos.SetPtEtaPhi(10,roiData.eta(),roiData.phi());
176  if( std::abs(roiPos.Eta()) < 1.3 ) continue; // only NSW region
177  ATH_MSG_DEBUG("RoI pT=" << sldata.pt(icand)
178  << " roiEta=" << roiPos.Eta()
179  << " roiPhi=" << roiPos.Phi()
180  << " flagF=" << sldata.bw2or3(icand)
181  << " flagC=" << sldata.innercoin(icand)
182  << " flagH=" << sldata.goodmf(icand) );
183  bool matched = !m_nswVetoMode.value();
184  double deltaEtaCut=0,deltaPhiCut=0,deltaThetaCut=0;
185  if( std::abs(roiPos.Eta()) < m_etaBoundary1.value() ){
186  deltaEtaCut=m_deltaEtaCut1.value();
187  deltaPhiCut=m_deltaPhiCut1.value();
188  deltaThetaCut=m_deltaThetaCut1.value();
189  }else if( std::abs(roiPos.Eta()) > m_etaBoundary2.value() ){
190  deltaEtaCut=m_deltaEtaCut2.value();
191  deltaPhiCut=m_deltaPhiCut2.value();
192  deltaThetaCut=m_deltaThetaCut2.value();
193  }else{
194  matched = true;
195  }
196  for(const auto seg : muSegDataColl){
197  TVector3 segPos(seg->x(),seg->y(),seg->z());
198  TVector3 segVec(seg->px(),seg->py(),seg->pz());
199  float deltaEta = std::abs( segPos.Eta() - roiPos.Eta() );
200  float deltaPhi = std::abs( segPos.DeltaPhi( roiPos ) );
201  float deltaTheta = std::abs( segVec.Theta() - segPos.Theta() );
202  bool tmpmatched = (deltaEta < deltaEtaCut && deltaPhi < deltaPhiCut && deltaTheta < deltaThetaCut);
203  ATH_MSG_DEBUG(" matched=" << tmpmatched
204  << " RoI pT=" << sldata.pt(icand)
205  << " roiEta=" << roiPos.Eta()
206  << " roiPhi=" << roiPos.Phi()
207  << " segEta=" << segPos.Eta()
208  << " segPhi=" << segPos.Phi()
209  << " segEtaVec=" << segVec.Eta()
210  << " segPhiVec=" << segVec.Phi()
211  << " chi2=" << seg->chiSquared()
212  << " ndof=" << seg->numberDoF()
213  << " sector=" << seg->sector()
214  << " etaIndex=" << seg->etaIndex()
215  << " technology=" << Muon::MuonStationIndex::technologyName(seg->technology())
216  << " nPrecisionHits=" << seg->nPrecisionHits()
217  << " nPhiLayers=" << seg->nPhiLayers()
218  << " nTrigEtaLayers=" << seg->nTrigEtaLayers()
219  << " deltaEta=" << deltaEta
220  << " deltaPhi=" << deltaPhi
221  << " deltaTheta=" << deltaTheta);
222  matched |= tmpmatched;
223  }
224  sldata.innercoin(icand,matched);
225  }
226  }
227 
228 }
229 
230 
LVL1MUONIF::Lvl1MuCTPIInputPhase1::setSectorLogicData
void setSectorLogicData(const Lvl1MuSectorLogicDataPhase1 &data, size_t systemAddress, size_t subSystemAddress, size_t sectorAddress, int bcid=0)
Definition: Lvl1MuCTPIInputPhase1.cxx:69
LVL1::TrigT1MuonRecRoiData
Definition: TrigT1MuonRecRoiData.h:10
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
LVL1MUONIF::Lvl1MuCTPIInputPhase1::idForwardSystem
static size_t idForwardSystem()
Definition: Lvl1MuCTPIInputPhase1.h:139
CSS
@ CSS
Definition: ParabolaCscClusterFitter.h:25
DetType::Endcap
@ Endcap
Definition: DetType.h:14
LVL1TGCTrigger::TGCOutputModifier::m_outputKey
SG::WriteHandleKey< LVL1MUONIF::Lvl1MuCTPIInputPhase1 > m_outputKey
Definition: TGCOutputModifier.h:51
LVL1TGCTrigger::TGCOutputModifier::~TGCOutputModifier
virtual ~TGCOutputModifier()
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
Lvl1MuSectorLogicConstantsPhase1.h
SG::ReadHandle::cptr
const_pointer_type cptr()
Dereference the pointer.
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::innercoin
int innercoin(size_t id) const
Definition: Lvl1MuSectorLogicDataPhase1.h:56
xAOD::deltaPhi
setSAddress setEtaMS setDirPhiMS setDirZMS setBarrelRadius setEndcapAlpha setEndcapRadius setInterceptInner setEtaMap setEtaBin setIsTgcFailure setDeltaPt deltaPhi
Definition: L2StandAloneMuon_v1.cxx:161
LVL1TGCTrigger::TGCOutputModifier::Update
void Update(const std::vector< const xAOD::MuonSegment * > &segs, LVL1MUONIF::Lvl1MuSectorLogicDataPhase1 &sldata, size_t systemAddress, size_t subSystemAddress, size_t sectorAddress) const
Definition: TGCOutputModifier.cxx:155
Muon::MuonStationIndex::TechnologyIndex
TechnologyIndex
enum to classify the different layers in the muon spectrometer
Definition: MuonStationIndex.h:54
LVL1MUONIF::Lvl1MuCTPIInputPhase1
Class representing (part of) the input data to the MuCTPI for Phase 1.
Definition: Lvl1MuCTPIInputPhase1.h:34
LVL1::TrigT1MuonRecRoiData::eta
double eta(void) const
Definition: TrigT1MuonRecRoiData.h:22
LVL1TGCTrigger::TGCOutputModifier::m_deltaThetaCut2
DoubleProperty m_deltaThetaCut2
Definition: TGCOutputModifier.h:57
LVL1TGCTrigger::TGCOutputModifier::m_emulateC
BooleanProperty m_emulateC
Definition: TGCOutputModifier.h:63
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::bw2or3
int bw2or3(size_t id) const
Definition: Lvl1MuSectorLogicDataPhase1.h:57
LVL1TGCTrigger::TGCOutputModifier::m_emulateA
BooleanProperty m_emulateA
Definition: TGCOutputModifier.h:62
SG::VarHandleKey::key
const std::string & key() const
Return the StoreGate ID for the referenced object.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:141
LVL1MUONIF::Lvl1MuCTPIInputPhase1::MuonSystem
MuonSystem
Definition: Lvl1MuCTPIInputPhase1.h:48
LVL1MUONIF::Lvl1MuEndcapSectorLogicDataPhase1
Class representing data from an endcap SL board.
Definition: Lvl1MuEndcapSectorLogicDataPhase1.h:26
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::ovl
int ovl(size_t id) const
Definition: Lvl1MuSectorLogicDataPhase1.h:51
LVL1TGCTrigger::TGCOutputModifier::m_etaBoundary1
DoubleProperty m_etaBoundary1
Definition: TGCOutputModifier.h:60
Muon::MuonStationIndex::numberOfSectors
constexpr unsigned numberOfSectors()
return total number of sectors
Definition: MuonStationIndex.h:118
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:74
TGCOutputModifier.h
Lvl1MuCTPIInputPhase1.h
xAOD::roiWord
roiWord
Definition: TrigMissingET_v1.cxx:36
LVL1TGCTrigger::TGCOutputModifier::Copy
void Copy(const LVL1MUONIF::Lvl1MuSectorLogicDataPhase1 *sldataOrg, LVL1MUONIF::Lvl1MuSectorLogicDataPhase1 &sldataNew) const
Definition: TGCOutputModifier.cxx:136
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::set2candidatesInSector
void set2candidatesInSector()
Definition: Lvl1MuSectorLogicDataPhase1.h:60
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
P4Helpers::deltaEta
double deltaEta(const I4Momentum &p1, const I4Momentum &p2)
Computes efficiently .
Definition: P4Helpers.h:66
lumiFormat.i
int i
Definition: lumiFormat.py:85
LVL1MUONIF::Lvl1MuCTPIInputPhase1::idSideA
static size_t idSideA()
Definition: Lvl1MuCTPIInputPhase1.h:141
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
SG::WriteHandle::ptr
pointer_type ptr()
Dereference the pointer.
LVL1TGCTrigger::TGCOutputModifier::m_deltaThetaCut1
DoubleProperty m_deltaThetaCut1
Definition: TGCOutputModifier.h:54
LVL1TGCTrigger::TGCOutputModifier::TGCOutputModifier
TGCOutputModifier(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TGCOutputModifier.cxx:19
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
LVL1MUONIF::Lvl1MuCTPIInputPhase1::getSystemIndex
size_t getSystemIndex(size_t systemAddress, size_t subSystemAddress, size_t sectorAddress) const
Definition: Lvl1MuCTPIInputPhase1.h:159
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::clear2candidates
void clear2candidates(size_t id)
Definition: Lvl1MuSectorLogicDataPhase1.h:69
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1
Base class for the data coming from one SL board.
Definition: Lvl1MuSectorLogicDataPhase1.h:35
CaloCondBlobAlgs_fillNoiseFromASCII.systemId
systemId
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:107
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::charge
int charge(size_t id) const
Definition: Lvl1MuSectorLogicDataPhase1.h:53
SG::VarHandleKey::initialize
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:103
LVL1::TrigT1MuonRecRoiData::phi
double phi(void) const
Definition: TrigT1MuonRecRoiData.h:23
Muon::MuonStationIndex::technologyName
const std::string & technologyName(TechnologyIndex index)
convert LayerIndex into a string
Definition: MuonStationIndex.cxx:169
DataVector
Derived DataVector<T>.
Definition: DataVector.h:794
SG::ReadHandle::isValid
virtual bool isValid() override final
Can the handle be successfully dereferenced?
LVL1TGCTrigger
Definition: LVL1TGCTrigger.cxx:47
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::set2candidates
void set2candidates(size_t id)
Definition: Lvl1MuSectorLogicDataPhase1.h:68
LVL1TGCTrigger::TGCOutputModifier::m_nswVetoMode
BooleanProperty m_nswVetoMode
Definition: TGCOutputModifier.h:64
LVL1TGCTrigger::TGCOutputModifier::initialize
virtual StatusCode initialize() override
Regular Gaudi algorithm initialization function.
Definition: TGCOutputModifier.cxx:30
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
LVL1TGCTrigger::TGCOutputModifier::m_musegKey
SG::ReadHandleKey< xAOD::MuonSegmentContainer > m_musegKey
Definition: TGCOutputModifier.h:53
LVL1TGCTrigger::TGCOutputModifier::m_inputKey
SG::ReadHandleKey< LVL1MUONIF::Lvl1MuCTPIInputPhase1 > m_inputKey
Definition: TGCOutputModifier.h:50
LVL1TGCTrigger::TGCOutputModifier::m_deltaEtaCut2
DoubleProperty m_deltaEtaCut2
Definition: TGCOutputModifier.h:58
python.ElectronD3PDObject.matched
matched
Definition: ElectronD3PDObject.py:138
LVL1MUONIF::Lvl1MuForwardSectorLogicDataPhase1
Class representing data from an forward SL board.
Definition: Lvl1MuForwardSectorLogicDataPhase1.h:26
MuonHough::ChIdx
Muon::MuonStationIndex::ChIndex ChIdx
Definition: MuonRegionHough.cxx:9
LVL1TGCTrigger::TGCOutputModifier::m_deltaPhiCut1
DoubleProperty m_deltaPhiCut1
Definition: TGCOutputModifier.h:56
xAOD::bcid
setEventNumber setTimeStamp bcid
Definition: EventInfo_v1.cxx:133
LVL1MUONIF::Lvl1MuCTPIInputPhase1::NumberOfEndcapSector
@ NumberOfEndcapSector
Definition: Lvl1MuCTPIInputPhase1.h:53
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::goodmf
int goodmf(size_t id) const
Definition: Lvl1MuSectorLogicDataPhase1.h:55
LVL1TGCTrigger::TGCOutputModifier::m_deltaEtaCut1
DoubleProperty m_deltaEtaCut1
Definition: TGCOutputModifier.h:55
SG::WriteHandle
Definition: StoreGate/StoreGate/WriteHandle.h:73
LVL1MUONIF::Lvl1MuCTPIInputPhase1::NumberOfForwardSector
@ NumberOfForwardSector
Definition: Lvl1MuCTPIInputPhase1.h:54
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::pt
int pt(size_t id) const
Definition: Lvl1MuSectorLogicDataPhase1.h:52
SG::WriteHandle::record
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
MuCTPIL1Topo.h
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
LVL1MUONIF::Lvl1MuCTPIInputPhase1::idSideC
static size_t idSideC()
Definition: Lvl1MuCTPIInputPhase1.h:142
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::is2candidates
bool is2candidates(size_t id) const
Definition: Lvl1MuSectorLogicDataPhase1.h:54
LVL1TGCTrigger::TGCOutputModifier::m_etaBoundary2
DoubleProperty m_etaBoundary2
Definition: TGCOutputModifier.h:61
LVL1TGCTrigger::TGCOutputModifier::m_recTGCRoiTool
ToolHandle< LVL1::ITrigT1MuonRecRoiTool > m_recTGCRoiTool
Definition: TGCOutputModifier.h:52
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::roi
int roi(size_t id) const
Definition: Lvl1MuSectorLogicDataPhase1.h:50
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::bcid
int bcid() const
Definition: Lvl1MuSectorLogicDataPhase1.h:48
LVL1TGCTrigger::TGCOutputModifier::execute
virtual StatusCode execute(const EventContext &eventContext) const override
Regular Gaudi algorithm execute function.
Definition: TGCOutputModifier.cxx:58
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::clear2candidatesInSector
void clear2candidatesInSector()
Definition: Lvl1MuSectorLogicDataPhase1.h:61
Muon::MuonStationIndex::ChIndex
ChIndex
enum to classify the different chamber layers in the muon spectrometer
Definition: MuonStationIndex.h:15
CSL
@ CSL
Definition: ParabolaCscClusterFitter.h:25
LVL1TGCTrigger::TGCOutputModifier::m_deltaPhiCut2
DoubleProperty m_deltaPhiCut2
Definition: TGCOutputModifier.h:59
LVL1MUONIF::Lvl1MuSectorLogicDataPhase1::is2candidatesInSector
bool is2candidatesInSector() const
Definition: Lvl1MuSectorLogicDataPhase1.h:47
LVL1MUONIF::Lvl1MuCTPIInputPhase1::Endcap
@ Endcap
Definition: Lvl1MuCTPIInputPhase1.h:48
LVL1MUONIF::Lvl1MuCTPIInputPhase1::getData
const std::vector< Lvl1MuVectWithBC > & getData(MuonSystem system) const
Definition: Lvl1MuCTPIInputPhase1.h:182