CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
HcalTB02HcalNumberingScheme Class Reference

#include <SimG4CMS/HcalTestBeam/interface/HcalTB02HcalNumberingScheme.h>

Inheritance diagram for HcalTB02HcalNumberingScheme:
HcalTB02NumberingScheme

Public Member Functions

int getetaID (int sID) const
 
int getetaScaleF () const
 
int getlayerID (int sID) const
 
int getphiID (int sID) const
 
int getphiScaleF () const
 
int getUnitID (const G4Step *aStep) const override
 
 HcalTB02HcalNumberingScheme ()
 
 ~HcalTB02HcalNumberingScheme () override
 
- Public Member Functions inherited from HcalTB02NumberingScheme
 HcalTB02NumberingScheme ()
 
virtual ~HcalTB02NumberingScheme ()
 

Private Attributes

int etaScale
 
int phiScale
 

Detailed Description

Description: Numbering scheme for hadron calorimeter in 2002 test beam

Usage: Sets up unique identifier for HB towers in 2002 test beam

Definition at line 24 of file HcalTB02HcalNumberingScheme.h.

Constructor & Destructor Documentation

◆ HcalTB02HcalNumberingScheme()

HcalTB02HcalNumberingScheme::HcalTB02HcalNumberingScheme ( )

Definition at line 28 of file HcalTB02HcalNumberingScheme.cc.

29  : HcalTB02NumberingScheme(), phiScale(1000000), etaScale(10000) {
30  edm::LogVerbatim("HcalTBSim") << "Creating HcalTB02HcalNumberingScheme";
31 }
Log< level::Info, true > LogVerbatim

◆ ~HcalTB02HcalNumberingScheme()

HcalTB02HcalNumberingScheme::~HcalTB02HcalNumberingScheme ( )
override

Definition at line 33 of file HcalTB02HcalNumberingScheme.cc.

33  {
34 #ifdef EDM_ML_DEBUG
35  edm::LogVerbatim("HcalTBSim") << "Deleting HcalTB02HcalNumberingScheme";
36 #endif
37 }
Log< level::Info, true > LogVerbatim

Member Function Documentation

◆ getetaID()

int HcalTB02HcalNumberingScheme::getetaID ( int  sID) const

Definition at line 113 of file HcalTB02HcalNumberingScheme.cc.

References funct::abs(), printConversionInfo::aux, etaScale, createfilelist::int, and phiScale.

113  {
114  sID = std::abs(sID);
115  int aux = sID - int(float(sID) / float(phiScale)) * phiScale;
116  int etaID = int(float(aux) / float(etaScale));
117 
118 #ifdef EDM_ML_DEBUG
119  edm::LogVerbatim("HcalTBSim") << "HcalTB02HcalNumberingScheme:: scintID " << sID << " eta = " << etaID;
120 #endif
121  return etaID;
122 }
Log< level::Info, true > LogVerbatim
Abs< T >::type abs(const T &t)
Definition: Abs.h:22

◆ getetaScaleF()

int HcalTB02HcalNumberingScheme::getetaScaleF ( ) const
inline

Definition at line 31 of file HcalTB02HcalNumberingScheme.h.

References etaScale.

◆ getlayerID()

int HcalTB02HcalNumberingScheme::getlayerID ( int  sID) const

Definition at line 84 of file HcalTB02HcalNumberingScheme.cc.

References funct::abs(), etaScale, and createfilelist::int.

84  {
85  sID = std::abs(sID);
86  int layerID = sID;
87  if ((layerID != 17) && (layerID != 18))
88  layerID = sID - int(float(sID) / float(etaScale)) * etaScale;
89 
90 #ifdef EDM_ML_DEBUG
91  edm::LogVerbatim("HcalTBSim") << "HcalTB02HcalNumberingScheme:: scintID " << sID << " layer = " << layerID;
92 #endif
93  return layerID;
94 }
Log< level::Info, true > LogVerbatim
Abs< T >::type abs(const T &t)
Definition: Abs.h:22

◆ getphiID()

int HcalTB02HcalNumberingScheme::getphiID ( int  sID) const

Definition at line 96 of file HcalTB02HcalNumberingScheme.cc.

References funct::abs(), createfilelist::int, and phiScale.

96  {
97  float IDsign = 1.;
98  if (sID < 0)
99  IDsign = -1;
100  sID = std::abs(sID);
101  int phiID = int(float(sID) / float(phiScale));
102 #ifdef EDM_ML_DEBUG
103  edm::LogVerbatim("HcalTBSim") << "HcalTB02HcalNumberingScheme:: scintID " << sID << " phi = " << phiID;
104 #endif
105  if (IDsign > 0) {
106  phiID += 4;
107  } else {
108  phiID = std::abs(phiID - 3);
109  }
110  return phiID;
111 }
Log< level::Info, true > LogVerbatim
Abs< T >::type abs(const T &t)
Definition: Abs.h:22

◆ getphiScaleF()

int HcalTB02HcalNumberingScheme::getphiScaleF ( ) const
inline

Definition at line 30 of file HcalTB02HcalNumberingScheme.h.

References phiScale.

◆ getUnitID()

int HcalTB02HcalNumberingScheme::getUnitID ( const G4Step *  aStep) const
overridevirtual

Implements HcalTB02NumberingScheme.

Definition at line 43 of file HcalTB02HcalNumberingScheme.cc.

References PVValHelper::eta, etaScale, createfilelist::int, dqm-mbProfile::log, visualization-live-secondInstance_cfg::m, SiStripPI::max, SiStripPI::min, phi, phiScale, funct::pow(), funct::sin(), mathSSE::sqrt(), and funct::tan().

43  {
44  int scintID = 0;
45 
46  G4StepPoint* preStepPoint = aStep->GetPreStepPoint();
47  const G4ThreeVector& hitPoint = preStepPoint->GetPosition();
48  float hx = hitPoint.x();
49  float hy = hitPoint.y();
50  float hz = hitPoint.z();
51  float hr = std::sqrt(pow(hx, 2) + pow(hy, 2));
52 
53  // Check if hit happened in first HO layer or second.
54 
55  if ((hr > 3. * m) && (hr < 3.830 * m))
56  return scintID = 17;
57  if (hr > 3.830 * m)
58  return scintID = 18;
59 
60  // Compute the scintID in the HB.
61 
62  float hR = hitPoint.mag(); //sqrt( pow(hx,2)+pow(hy,2)+pow(hz,2) );
63  float htheta = (hR == 0. ? 0. : acos(std::max(std::min(hz / hR, float(1.)), float(-1.))));
64  float hsintheta = sin(htheta);
65  float hphi = (hR * hsintheta == 0. ? 0. : acos(std::max(std::min(hx / (hR * hsintheta), float(1.)), float(-1.))));
66  float heta = (std::fabs(hsintheta) == 1. ? 0. : -std::log(std::fabs(tan(htheta / 2.))));
67  int eta = int(heta / 0.087);
68  int phi = int(hphi / (5. * degree));
69 
70  G4VPhysicalVolume* thePV = preStepPoint->GetPhysicalVolume();
71  int ilayer = ((thePV->GetCopyNo()) / 10) % 100;
72 #ifdef EDM_ML_DEBUG
73  edm::LogVerbatim("HcalTBSim") << "HcalTB02HcalNumberingScheme:: Layer " << thePV->GetName()
74  << " found at phi = " << phi << " eta = " << eta << " lay = " << thePV->GetCopyNo()
75  << " " << ilayer;
76 #endif
77  scintID = phiScale * phi + etaScale * eta + ilayer;
78  if (hy < 0.)
79  scintID = -scintID;
80 
81  return scintID;
82 }
Log< level::Info, true > LogVerbatim
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
T sqrt(T t)
Definition: SSEVec.h:23
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29

Member Data Documentation

◆ etaScale

int HcalTB02HcalNumberingScheme::etaScale
private

Definition at line 39 of file HcalTB02HcalNumberingScheme.h.

Referenced by getetaID(), getetaScaleF(), getlayerID(), and getUnitID().

◆ phiScale

int HcalTB02HcalNumberingScheme::phiScale
private

Definition at line 38 of file HcalTB02HcalNumberingScheme.h.

Referenced by getetaID(), getphiID(), getphiScaleF(), and getUnitID().