CMS 3D CMS Logo

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

#include <HGCMouseBite.h>

Public Member Functions

bool exclude (G4ThreeVector &point, int zside, int waferU, int waferV)
 
 HGCMouseBite (const HGCalDDDConstants &hgc, const std::vector< double > &angle, double maxLength, bool waferRotate)
 

Private Attributes

double cut_
 
const HGCalDDDConstantshgcons_
 
bool modeUV_
 
std::vector< std::pair< double, double > > projXY_
 
bool rot_
 

Detailed Description

Definition at line 9 of file HGCMouseBite.h.

Constructor & Destructor Documentation

HGCMouseBite::HGCMouseBite ( const HGCalDDDConstants hgc,
const std::vector< double > &  angle,
double  maxLength,
bool  waferRotate 
)

Definition at line 9 of file HGCMouseBite.cc.

References funct::cos(), cut_, HGCalDDDConstants::geomMode(), HGCalGeometryMode::Hexagon8, HGCalGeometryMode::Hexagon8Full, hgcons_, dqmdumpme::k, modeUV_, projXY_, and funct::sin().

10  : hgcons_(hgc), cut_(maxL), rot_(rot) {
11  modeUV_ =
13  for (auto ang : angle) {
14  projXY_.push_back(std::pair<double, double>(cos(ang * CLHEP::deg), sin(ang * CLHEP::deg)));
15  }
16 #ifdef EDM_ML_DEBUG
17  edm::LogVerbatim("HGCSim") << "Creating HGCMosueBite with cut at " << cut_ << " with mode " << modeUV_ << " along "
18  << angle.size() << " axes";
19  for (unsigned int k = 0; k < angle.size(); ++k)
20  edm::LogVerbatim("HGCSim") << "Axis[" << k << "] " << angle[k] << " with projections " << projXY_[k].first << ":"
21  << projXY_[k].second;
22 #endif
23 }
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
HGCalGeometryMode::GeometryMode geomMode() const
const HGCalDDDConstants & hgcons_
Definition: HGCMouseBite.h:15
std::vector< std::pair< double, double > > projXY_
Definition: HGCMouseBite.h:19
T angle(T x1, T y1, T z1, T x2, T y2, T z2)
Definition: angle.h:11

Member Function Documentation

bool HGCMouseBite::exclude ( G4ThreeVector &  point,
int  zside,
int  waferU,
int  waferV 
)

Definition at line 25 of file HGCMouseBite.cc.

References funct::abs(), RPCNoise_example::check, cut_, PVValHelper::dx, PVValHelper::dy, HGCalDDDConstants::getLayer(), hgcons_, modeUV_, amptDefault_cfi::proj, projXY_, rot_, HGCalDDDConstants::waferPosition(), geometryCSVtoXML::xx, and geometryCSVtoXML::xy.

25  {
26  bool check(false);
27  int lay = hgcons_.getLayer(point.z(), false);
28  std::pair<double, double> xy =
29  (modeUV_ ? hgcons_.waferPosition(lay, waferU, waferV, false) : hgcons_.waferPosition(waferU, false));
30  double xx = (zside > 0) ? xy.first : -xy.first;
31  double dx(0), dy(0);
32  if (rot_) {
33  dx = std::abs(point.y() - xy.second);
34  dy = std::abs(point.x() - xx);
35  } else {
36  dx = std::abs(point.x() - xx);
37  dy = std::abs(point.y() - xy.second);
38  }
39  for (auto proj : projXY_) {
40  double dist = dx * proj.first + dy * proj.second;
41  if (dist > cut_) {
42  check = true;
43  break;
44  }
45  }
46 #ifdef EDM_ML_DEBUG
47  edm::LogVerbatim("HGCSim") << "HGCMouseBite:: Point " << point << " zside " << zside << " wafer " << waferU << ":"
48  << waferV << " position " << xy.first << ":" << xx << ":" << xy.second << " dxy " << dx
49  << ":" << dy << " check " << check;
50 #endif
51  return check;
52 }
int getLayer(double z, bool reco) const
int zside(DetId const &)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
const HGCalDDDConstants & hgcons_
Definition: HGCMouseBite.h:15
std::pair< double, double > waferPosition(int wafer, bool reco) const
std::vector< std::pair< double, double > > projXY_
Definition: HGCMouseBite.h:19
*vegas h *****************************************************used in the default bin number in original ***version of VEGAS is ***a higher bin number might help to derive a more precise ***grade subtle point
Definition: invegas.h:5

Member Data Documentation

double HGCMouseBite::cut_
private

Definition at line 16 of file HGCMouseBite.h.

Referenced by exclude(), and HGCMouseBite().

const HGCalDDDConstants& HGCMouseBite::hgcons_
private

Definition at line 15 of file HGCMouseBite.h.

Referenced by exclude(), and HGCMouseBite().

bool HGCMouseBite::modeUV_
private

Definition at line 18 of file HGCMouseBite.h.

Referenced by exclude(), and HGCMouseBite().

std::vector<std::pair<double, double> > HGCMouseBite::projXY_
private

Definition at line 19 of file HGCMouseBite.h.

Referenced by exclude(), and HGCMouseBite().

bool HGCMouseBite::rot_
private

Definition at line 17 of file HGCMouseBite.h.

Referenced by exclude().