CMS 3D CMS Logo

FW3DViewGeometry.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Core
4 // Class : FW3DViewGeometry
5 //
6 // Implementation:
7 // [Notes on implementation]
8 //
9 // Original Author: Alja Mrak-Tadel
10 // Created: Thu Mar 25 22:06:57 CET 2010
11 //
12 
13 // system include files
14 #include <sstream>
15 
16 // user include files
17 
18 #include "TEveManager.h"
19 #include "TEveGeoNode.h"
20 #include "TEveGeoShape.h"
21 #include "TEveCompound.h"
22 
29 
34 
35 //
36 // constants, enums and typedefs
37 //
38 
39 //
40 // static data member definitions
41 //
42 
43 //
44 // constructors and destructor
45 //
48  m_muonBarrelElements(nullptr),
49  m_muonBarrelFullElements(nullptr),
50  m_muonEndcapElements(nullptr),
51  m_muonEndcapFullElements(nullptr),
52  m_pixelBarrelElements(nullptr),
53  m_pixelEndcapElements(nullptr),
54  m_trackerBarrelElements(nullptr),
55  m_trackerEndcapElements(nullptr),
56  m_HGCalEEElements(nullptr),
57  m_HGCalHSiElements(nullptr),
58  m_HGCalHScElements(nullptr) {
59  SetElementName("3D Geometry");
60 }
61 
62 // FW3DViewGeometry::FW3DViewGeometry(const FW3DViewGeometry& rhs)
63 // {
64 // // do actual copying here;
65 // }
66 
68 
69 //
70 // member functions
71 //
72 
73 //
74 // const member functions
75 //
76 
77 //
78 // static member functions
79 //
80 
83  m_muonBarrelElements = new TEveElementList("DT");
84  for (Int_t iWheel = -2; iWheel <= 2; ++iWheel) {
85  for (Int_t iStation = 1; iStation <= 4; ++iStation) {
86  // We display only the outer chambers to make the event look more
87  // prominent
88  if (iWheel == -2 || iWheel == 2 || iStation == 4) {
89  std::ostringstream s;
90  s << "Station" << iStation;
91  TEveElementList* cStation = new TEveElementList(s.str().c_str());
92  m_muonBarrelElements->AddElement(cStation);
93  for (Int_t iSector = 1; iSector <= 14; ++iSector) {
94  if (iStation < 4 && iSector > 12)
95  continue;
96  DTChamberId id(iWheel, iStation, iSector);
97  TEveGeoShape* shape = m_geom->getEveShape(id.rawId());
99  cStation->AddElement(shape);
100  }
101  }
102  }
103  }
104  AddElement(m_muonBarrelElements);
105  }
106 
107  if (m_muonBarrelElements) {
108  m_muonBarrelElements->SetRnrState(showMuonBarrel);
109  gEve->Redraw3D();
110  }
111 }
112 
115  m_muonBarrelFullElements = new TEveElementList("DT Full");
116  for (Int_t iWheel = -2; iWheel <= 2; ++iWheel) {
117  TEveElementList* cWheel = new TEveElementList(TString::Format("Wheel %d", iWheel));
118  m_muonBarrelFullElements->AddElement(cWheel);
119  for (Int_t iStation = 1; iStation <= 4; ++iStation) {
120  TEveElementList* cStation = new TEveElementList(TString::Format("Station %d", iStation));
121  cWheel->AddElement(cStation);
122  for (Int_t iSector = 1; iSector <= 14; ++iSector) {
123  if (iStation < 4 && iSector > 12)
124  continue;
125  DTChamberId id(iWheel, iStation, iSector);
126  TEveGeoShape* shape = m_geom->getEveShape(id.rawId());
127  shape->SetTitle(TString::Format("DT: W=%d, S=%d, Sec=%d\ndet-id=%u", iWheel, iStation, iSector, id.rawId()));
129  cStation->AddElement(shape);
130  }
131  }
132  }
133  AddElement(m_muonBarrelFullElements);
134  }
135 
138  gEve->Redraw3D();
139  }
140 }
141 
142 //______________________________________________________________________________
143 void FW3DViewGeometry::showMuonEndcap(bool showMuonEndcap) {
145  m_muonEndcapElements = new TEveElementList("EndCap");
146 
147  for (Int_t iEndcap = 1; iEndcap <= 2; ++iEndcap) // 1=forward (+Z), 2=backward(-Z)
148  {
149  TEveElementList* cEndcap = nullptr;
150  if (iEndcap == 1)
151  cEndcap = new TEveElementList("CSC Forward");
152  else
153  cEndcap = new TEveElementList("CSC Backward");
154  m_muonEndcapElements->AddElement(cEndcap);
155  // Actual CSC geometry:
156  // Station 1 has 4 rings with 36 chambers in each
157  // Station 2: ring 1 has 18 chambers, ring 2 has 36 chambers
158  // Station 3: ring 1 has 18 chambers, ring 2 has 36 chambers
159  // Station 4: ring 1 has 18 chambers
160  Int_t maxChambers = 36;
161  for (Int_t iStation = 1; iStation <= 4; ++iStation) {
162  std::ostringstream s;
163  s << "Station" << iStation;
164  TEveElementList* cStation = new TEveElementList(s.str().c_str());
165  cEndcap->AddElement(cStation);
166  for (Int_t iRing = 1; iRing <= 4; ++iRing) {
167  if (iStation > 1 && iRing > 2)
168  continue;
169  // if( iStation > 3 && iRing > 1 ) continue;
170  std::ostringstream s;
171  s << "Ring" << iRing;
172  TEveElementList* cRing = new TEveElementList(s.str().c_str());
173  cStation->AddElement(cRing);
174  (iRing == 1 && iStation > 1) ? (maxChambers = 18) : (maxChambers = 36);
175  for (Int_t iChamber = 1; iChamber <= maxChambers; ++iChamber) {
176  Int_t iLayer = 0; // chamber
177  CSCDetId id(iEndcap, iStation, iRing, iChamber, iLayer);
178  TEveGeoShape* shape = m_geom->getEveShape(id.rawId());
179  shape->SetTitle(TString::Format(
180  "CSC: %s, S=%d, R=%d, C=%d\ndet-id=%u", cEndcap->GetName(), iStation, iRing, iChamber, id.rawId()));
181 
183  cRing->AddElement(shape);
184  }
185  }
186  }
187  }
188 
189  // hardcoded gem and me0; need to find better way for different gem geometries
190  for (Int_t iRegion = GEMDetId::minRegionId; iRegion <= GEMDetId::maxRegionId; iRegion += 2) {
191  TEveElementList* teEndcap = nullptr;
192  teEndcap = new TEveElementList(Form("GEM Reg=%d", iRegion));
193  m_muonEndcapElements->AddElement(teEndcap);
194  int iStation = 1;
195  {
196  std::ostringstream s;
197  s << "Station" << iStation;
198  TEveElementList* cStation = new TEveElementList(s.str().c_str());
199  teEndcap->AddElement(cStation);
200 
201  for (Int_t iLayer = GEMDetId::minLayerId; iLayer <= GEMDetId::maxLayerId; ++iLayer) {
202  int maxChamber = GEMDetId::maxChamberId;
203  std::ostringstream sl;
204  sl << "Layer" << iLayer;
205  TEveElementList* elayer = new TEveElementList(sl.str().c_str());
206  cStation->AddElement(elayer);
207 
208  for (Int_t iChamber = 1; iChamber <= maxChamber; ++iChamber) {
209  std::ostringstream cl;
210  cl << "Chamber" << iChamber;
211  TEveElementList* cha = new TEveElementList(cl.str().c_str());
212  elayer->AddElement(cha);
213 
214  Int_t iRing = 1;
215  Int_t iRoll = 0;
216  try {
217  GEMDetId id(iRegion, iRing, iStation, iLayer, iChamber, iRoll);
218  TEveGeoShape* shape = m_geom->getEveShape(id.rawId());
219  if (shape) {
220  shape->SetTitle(TString::Format(
221  "GEM: , Rng=%d, St=%d, Ch=%d Rl=%d\ndet-id=%u", iRing, iStation, iChamber, iRoll, id.rawId()));
222 
223  cha->AddElement(shape);
225  }
226  } catch (cms::Exception& e) {
227  fwLog(fwlog::kError) << "FW3DViewGeomtery " << e << std::endl;
228  }
229  }
230  }
231  }
232  }
233 
234  // adding me0
235  if (m_geom->versionInfo().haveExtraDet("ME0")) {
236  for (Int_t iRegion = ME0DetId::minRegionId; iRegion <= ME0DetId::maxRegionId; iRegion = iRegion + 2) {
237  TEveElementList* teEndcap = nullptr;
238  if (iRegion == 1)
239  teEndcap = new TEveElementList("ME0 Forward");
240  else
241  teEndcap = new TEveElementList("ME0 Backward");
242  m_muonEndcapElements->AddElement(teEndcap);
243 
244  for (Int_t iLayer = 1; iLayer <= 6; ++iLayer) {
245  std::ostringstream s;
246  s << "Layer" << iLayer;
247  TEveElementList* cLayer = new TEveElementList(s.str().c_str());
248  teEndcap->AddElement(cLayer);
249 
250  for (Int_t iChamber = 1; iChamber <= 18; ++iChamber) {
251  Int_t iRoll = 1;
252  // for (Int_t iRoll = ME0DetId::minRollId; iRoll <= ME0DetId::maxRollId ; ++iRoll ){
253  ME0DetId id(iRegion, iLayer, iChamber, iRoll);
254  TEveGeoShape* shape = m_geom->getEveShape(id.rawId());
255  if (shape) {
256  shape->SetTitle(TString::Format("ME0: , Ch=%d Rl=%d\ndet-id=%u", iChamber, iRoll, id.rawId()));
257 
259  cLayer->AddElement(shape);
260  }
261  }
262  }
263  }
264  }
265 
266  AddElement(m_muonEndcapElements);
267  }
268 
269  if (m_muonEndcapElements) {
270  m_muonEndcapElements->SetRnrState(showMuonEndcap);
271  gEve->Redraw3D();
272  }
273 }
274 
275 //______________________________________________________________________________
276 void FW3DViewGeometry::showPixelBarrel(bool showPixelBarrel) {
278  m_pixelBarrelElements = new TEveElementList("PixelBarrel");
280  std::vector<unsigned int> ids = m_geom->getMatchedIds(FWGeometry::Tracker, FWGeometry::PixelBarrel);
281  for (std::vector<unsigned int>::const_iterator id = ids.begin(); id != ids.end(); ++id) {
282  TEveGeoShape* shape = m_geom->getEveShape(*id);
283 
284  uint32_t rawId = *id;
285  DetId did = DetId(rawId);
287  shape->SetTitle(title.c_str());
288 
290  m_pixelBarrelElements->AddElement(shape);
291  }
292  AddElement(m_pixelBarrelElements);
293  }
294 
295  if (m_pixelBarrelElements) {
297  gEve->Redraw3D();
298  }
299 }
300 
301 //______________________________________________________________________________
302 void FW3DViewGeometry::showPixelEndcap(bool showPixelEndcap) {
304  m_pixelEndcapElements = new TEveElementList("PixelEndcap");
305  std::vector<unsigned int> ids = m_geom->getMatchedIds(FWGeometry::Tracker, FWGeometry::PixelEndcap);
306  for (std::vector<unsigned int>::const_iterator id = ids.begin(); id != ids.end(); ++id) {
307  TEveGeoShape* shape = m_geom->getEveShape(*id);
308  uint32_t rawId = *id;
309  DetId did = DetId(rawId);
311  shape->SetTitle(title.c_str());
313  m_pixelEndcapElements->AddElement(shape);
314  }
315  AddElement(m_pixelEndcapElements);
316  }
317 
318  if (m_pixelEndcapElements) {
320  gEve->Redraw3D();
321  }
322 }
323 
324 //______________________________________________________________________________
325 void FW3DViewGeometry::showTrackerBarrel(bool showTrackerBarrel) {
327  m_trackerBarrelElements = new TEveElementList("TrackerBarrel");
329  std::vector<unsigned int> ids = m_geom->getMatchedIds(FWGeometry::Tracker, FWGeometry::TIB);
330  for (std::vector<unsigned int>::const_iterator id = ids.begin(); id != ids.end(); ++id) {
331  TEveGeoShape* shape = m_geom->getEveShape(*id);
333  m_trackerBarrelElements->AddElement(shape);
334  }
336  for (std::vector<unsigned int>::const_iterator id = ids.begin(); id != ids.end(); ++id) {
337  TEveGeoShape* shape = m_geom->getEveShape(*id);
338  shape->SetTitle(Form("TrackerBarrel %d", *id));
340  m_trackerBarrelElements->AddElement(shape);
341  }
342  AddElement(m_trackerBarrelElements);
343  }
344 
347  gEve->Redraw3D();
348  }
349 }
350 
351 //______________________________________________________________________________
352 void FW3DViewGeometry::showTrackerEndcap(bool showTrackerEndcap) {
354  m_trackerEndcapElements = new TEveElementList("TrackerEndcap");
355  std::vector<unsigned int> ids = m_geom->getMatchedIds(FWGeometry::Tracker, FWGeometry::TID);
356  for (std::vector<unsigned int>::const_iterator id = ids.begin(); id != ids.end(); ++id) {
357  TEveGeoShape* shape = m_geom->getEveShape(*id);
359  m_trackerEndcapElements->AddElement(shape);
360  }
362  for (std::vector<unsigned int>::const_iterator id = ids.begin(); id != ids.end(); ++id) {
363  TEveGeoShape* shape = m_geom->getEveShape(*id);
364 
365  shape->SetTitle(Form("TrackerEndcap %d", *id));
367  m_trackerEndcapElements->AddElement(shape);
368  }
369  AddElement(m_trackerEndcapElements);
370  }
371 
374  gEve->Redraw3D();
375  }
376 }
377 
378 //______________________________________________________________________________
379 void FW3DViewGeometry::showHGCalEE(bool showHGCalEE) {
380  if (showHGCalEE && !m_HGCalEEElements) {
381  m_HGCalEEElements = new TEveElementList("HGCalEE");
382  for (const auto& id : m_geom->getMatchedIds(FWGeometry::HGCalEE)) {
383  TEveGeoShape* shape = m_geom->getHGCSiliconEveShape(id);
384  const unsigned int layer = (id >> 20) & 0x1F;
385  shape->SetTitle(Form("HGCalEE %d", layer));
386  {
387  float color[3];
388  color[0] = color[1] = color[2] = 0.3f + 0.7f * (1.0f - layer / 28.0f);
389  color[1] = 0.5f * (layer & 2U) + 0.5f * color[1];
390  const bool isFine = ((id >> 26) & 0x3) == 0;
391  color[0] *= isFine ? 1.0f : 1.0f;
392  color[1] *= isFine ? 1.0f : 0.4f;
393  color[2] *= isFine ? 0.0f : 0.0f;
394  shape->SetMainColorRGB(color[0], color[1], color[2]);
395  shape->SetPickable(false);
396  m_colorComp[kFwHGCalEEColorIndex]->AddElement(shape);
397  }
398  m_HGCalEEElements->AddElement(shape);
399  }
400  AddElement(m_HGCalEEElements);
401  }
402  if (m_HGCalEEElements) {
403  m_HGCalEEElements->SetRnrState(showHGCalEE);
404  gEve->Redraw3D();
405  }
406 }
407 
408 void FW3DViewGeometry::showHGCalHSi(bool showHGCalHSi) {
410  m_HGCalHSiElements = new TEveElementList("HGCalHSi");
411  for (const auto& id : m_geom->getMatchedIds(FWGeometry::HGCalHSi)) {
412  TEveGeoShape* shape = m_geom->getHGCSiliconEveShape(id);
413  const unsigned int layer = (id >> 20) & 0x1F;
414  shape->SetTitle(Form("HGCalHSi %d", layer));
415  {
416  float color[3];
417  color[0] = color[1] = color[2] = 0.3f + 0.7f * (1.0f - layer / 28.0f);
418  color[0] = 0.5f * (layer & 2U) + 0.5f * color[0];
419  const bool isFine = ((id >> 26) & 0x3) == 0;
420  color[0] *= isFine ? 1.0f : 0.4f;
421  color[1] *= isFine ? 0.7f : 0.7f;
422  color[2] *= isFine ? 0.2f : 0.2f;
423  shape->SetMainColorRGB(color[0], color[1], color[2]);
424  shape->SetPickable(false);
425  m_colorComp[kFwHGCalHSiColorIndex]->AddElement(shape);
426  }
427  m_HGCalHSiElements->AddElement(shape);
428  }
429  AddElement(m_HGCalHSiElements);
430  }
431  if (m_HGCalHSiElements) {
432  m_HGCalHSiElements->SetRnrState(showHGCalHSi);
433  gEve->Redraw3D();
434  }
435 }
436 
437 void FW3DViewGeometry::showHGCalHSc(bool showHGCalHSc) {
439  m_HGCalHScElements = new TEveElementList("HGCalHSc");
440  std::vector<unsigned int> ids = m_geom->getMatchedIds(FWGeometry::HGCalHSc);
441  for (const auto& id : m_geom->getMatchedIds(FWGeometry::HGCalHSc)) {
442  TEveGeoShape* shape = m_geom->getHGCScintillatorEveShape(id);
443  const unsigned int layer = (id >> 17) & 0x1F;
444  shape->SetTitle(Form("HGCalHSc %d", layer));
446  m_HGCalHScElements->AddElement(shape);
447  }
448  AddElement(m_HGCalHScElements);
449  }
450  if (m_HGCalHScElements) {
451  m_HGCalHScElements->SetRnrState(showHGCalHSc);
452  gEve->Redraw3D();
453  }
454 }
FWGeometry::getHGCScintillatorEveShape
TEveGeoShape * getHGCScintillatorEveShape(unsigned int id) const
Definition: FWGeometry.cc:423
FWViewGeometryList::m_geom
const FWGeometry * m_geom
Definition: FWViewGeometryList.h:44
FW3DViewGeometry::m_trackerBarrelElements
TEveElementList * m_trackerBarrelElements
Definition: FW3DViewGeometry.h:67
fwLog
#define fwLog(_level_)
Definition: fwLog.h:45
runGCPTkAlMap.title
string title
Definition: runGCPTkAlMap.py:94
FW3DViewGeometry::m_trackerEndcapElements
TEveElementList * m_trackerEndcapElements
Definition: FW3DViewGeometry.h:68
fireworks::Context
Definition: Context.h:41
kFwHGCalHSiColorIndex
Definition: FWColorManager.h:40
funct::false
false
Definition: Factorize.h:29
FW3DViewGeometry::showHGCalHSi
void showHGCalHSi(bool)
Definition: FW3DViewGeometry.cc:408
FW3DViewGeometry::showHGCalEE
void showHGCalEE(bool)
Definition: FW3DViewGeometry.cc:379
FWGeometry::versionInfo
const VersionInfo & versionInfo() const
Definition: FWGeometry.h:150
FWGeometry::TID
Definition: FWGeometry.h:47
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
kFWMuonBarrelLineColorIndex
Definition: FWColorManager.h:37
FW3DViewGeometry::showMuonBarrelFull
void showMuonBarrelFull(bool)
Definition: FW3DViewGeometry.cc:113
FWGeometry::getTrackerTopology
const TrackerTopology * getTrackerTopology() const
Definition: FWGeometry.h:156
ME0DetId.h
FW3DViewGeometry::showMuonBarrel
void showMuonBarrel(bool)
Definition: FW3DViewGeometry.cc:81
FW3DViewGeometry::m_HGCalHSiElements
TEveElementList * m_HGCalHSiElements
Definition: FW3DViewGeometry.h:70
GEMDetId::minLayerId
static constexpr int32_t minLayerId
Definition: GEMDetId.h:30
FW3DViewBase::showMuonBarrel
void showMuonBarrel(long)
Definition: FW3DViewBase.cc:202
FWGeometry::getHGCSiliconEveShape
TEveGeoShape * getHGCSiliconEveShape(unsigned int id) const
Definition: FWGeometry.cc:357
CSCDetId.h
FW3DViewGeometry::m_muonBarrelElements
TEveElementList * m_muonBarrelElements
Definition: FW3DViewGeometry.h:61
FW3DViewGeometry::m_pixelBarrelElements
TEveElementList * m_pixelBarrelElements
Definition: FW3DViewGeometry.h:65
GetRecoTauVFromDQM_MC_cff.cl
cl
Definition: GetRecoTauVFromDQM_MC_cff.py:38
DetId
Definition: DetId.h:17
alignCSCRings.s
s
Definition: alignCSCRings.py:92
FWEveView::context
const fireworks::Context & context()
Definition: FWEveView.h:64
FWColorManager.h
FWGeometry::Tracker
Definition: FWGeometry.h:33
kFWPixelBarrelColorIndex
Definition: FWColorManager.h:33
FW3DViewGeometry::FW3DViewGeometry
FW3DViewGeometry(const fireworks::Context &context)
Definition: FW3DViewGeometry.cc:46
GEMDetId::maxChamberId
static constexpr int32_t maxChamberId
Definition: GEMDetId.h:29
FWGeometry::VersionInfo::haveExtraDet
bool haveExtraDet(const char *) const
Definition: FWGeometry.cc:535
TrackerTopology::print
std::string print(DetId detid) const
Definition: TrackerTopology.cc:252
FW3DViewGeometry::m_HGCalEEElements
TEveElementList * m_HGCalEEElements
Definition: FW3DViewGeometry.h:69
DTChamberId.h
mitigatedMETSequence_cff.U
U
Definition: mitigatedMETSequence_cff.py:36
phase1PixelTopology::layer
constexpr std::array< uint8_t, layerIndexSize > layer
Definition: phase1PixelTopology.h:99
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
FW3DViewGeometry::showMuonEndcap
void showMuonEndcap(bool)
Definition: FW3DViewGeometry.cc:143
FWGeometry.h
FW3DViewGeometry.h
kFWMuonEndcapLineColorIndex
Definition: FWColorManager.h:38
FWGeometry::TOB
Definition: FWGeometry.h:48
kFWTrackerEndcapColorIndex
Definition: FWColorManager.h:36
FW3DViewGeometry::m_pixelEndcapElements
TEveElementList * m_pixelEndcapElements
Definition: FW3DViewGeometry.h:66
GEMDetId
Definition: GEMDetId.h:18
FW3DViewGeometry::m_HGCalHScElements
TEveElementList * m_HGCalHScElements
Definition: FW3DViewGeometry.h:71
CSCDetId
Definition: CSCDetId.h:26
TEveElementIter.h
FW3DViewGeometry::showPixelEndcap
void showPixelEndcap(bool)
Definition: FW3DViewGeometry.cc:302
GEMDetId::minRegionId
static constexpr int32_t minRegionId
Definition: GEMDetId.h:20
FW3DViewGeometry::m_muonBarrelFullElements
TEveElementList * m_muonBarrelFullElements
Definition: FW3DViewGeometry.h:62
ME0DetId
Definition: ME0DetId.h:16
fwLog.h
FWGeometry::TIB
Definition: FWGeometry.h:46
FWGeometry::HGCalHSi
Definition: FWGeometry.h:39
kFWPixelEndcapColorIndex
Definition: FWColorManager.h:34
GEMDetId::maxRegionId
static constexpr int32_t maxRegionId
Definition: GEMDetId.h:21
FWGeometry::HGCalHSc
Definition: FWGeometry.h:40
FWGeometry::TEC
Definition: FWGeometry.h:49
kFwHGCalHScColorIndex
Definition: FWColorManager.h:41
FWGeometry::PixelBarrel
Definition: FWGeometry.h:44
FW3DViewGeometry::showHGCalHSc
void showHGCalHSc(bool)
Definition: FW3DViewGeometry.cc:437
GEMDetId.h
FW3DViewGeometry::showPixelBarrel
void showPixelBarrel(bool)
Definition: FW3DViewGeometry.cc:276
FWGeometry::getMatchedIds
std::vector< unsigned int > getMatchedIds(Detector det, SubDetector subdet) const
Definition: FWGeometry.cc:254
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:29
GEMDetId::maxLayerId
static constexpr int32_t maxLayerId
Definition: GEMDetId.h:32
ME0DetId::minRegionId
static constexpr int minRegionId
Definition: ME0DetId.h:63
kFWTrackerBarrelColorIndex
Definition: FWColorManager.h:35
fwlog::kError
Definition: fwLog.h:35
FWViewGeometryList
Definition: FWViewGeometryList.h:34
kFwHGCalEEColorIndex
Definition: FWColorManager.h:39
cms::Exception
Definition: Exception.h:70
FW3DViewGeometry::showTrackerBarrel
void showTrackerBarrel(bool)
Definition: FW3DViewGeometry.cc:325
DTChamberId
Definition: DTChamberId.h:14
FWGeometry::PixelEndcap
Definition: FWGeometry.h:45
FW3DViewGeometry::m_muonEndcapElements
TEveElementList * m_muonEndcapElements
Definition: FW3DViewGeometry.h:63
FWGeometry::getEveShape
TEveGeoShape * getEveShape(unsigned int id) const
Definition: FWGeometry.cc:324
FWGeometry::HGCalEE
Definition: FWGeometry.h:38
FWViewGeometryList::m_colorComp
TEveCompound * m_colorComp[kFWGeomColorSize]
Definition: FWViewGeometryList.h:46
FW3DViewGeometry::showTrackerEndcap
void showTrackerEndcap(bool)
Definition: FW3DViewGeometry.cc:352
Context.h
ME0DetId::maxRegionId
static constexpr int maxRegionId
Definition: ME0DetId.h:64
FW3DViewGeometry::~FW3DViewGeometry
~FW3DViewGeometry() override
Definition: FW3DViewGeometry.cc:67
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37
FWViewGeometryList::addToCompound
void addToCompound(TEveElement *el, FWGeomColorIndex idx, bool applyTransp=true) const
Definition: FWViewGeometryList.cc:48