CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
PixelCPEClusterRepair::Rule Class Reference

Public Member Functions

bool recommend (DetId detid, const TrackerTopology &tTopo) const
 
 Rule (const std::string &str)
 

Private Attributes

int layer_
 
int subdet_
 

Detailed Description

Definition at line 122 of file PixelCPEClusterRepair.h.

Constructor & Destructor Documentation

PixelCPEClusterRepair::Rule::Rule ( const std::string &  str)

Definition at line 697 of file PixelCPEClusterRepair.cc.

References Exception, dqmdumpme::first, sistrip::layer_, match(), PixelSubdetector::PixelBarrel, PixelSubdetector::PixelEndcap, and edm::second().

697  {
698  static const boost::regex rule("([A-Z]+)(\\s+(\\d+))?");
699  boost::cmatch match;
700  // match and check it works
701  if (!regex_match(str.c_str(), match, rule))
702  throw cms::Exception("Configuration") << "Rule '" << str << "' not understood.\n";
703 
704  // subdet
705  subdet_ = -1;
706  if (strncmp(match[1].first, "PXB", 3) == 0)
708  else if (strncmp(match[1].first, "PXE", 3) == 0)
710  if (subdet_ == -1) {
711  throw cms::Exception("PixelCPEClusterRepair::Configuration")
712  << "Detector '" << match[1].first << "' not understood. Should be PXB, PXE.\n";
713  }
714  // layer (if present)
715  if (match[3].first != match[3].second) {
716  layer_ = atoi(match[3].first);
717  } else {
718  layer_ = 0;
719  }
720 } //end Rule::Rule
U second(std::pair< T, U > const &p)
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
#define str(s)

Member Function Documentation

bool PixelCPEClusterRepair::Rule::recommend ( DetId  detid,
const TrackerTopology tTopo 
) const
inline

Definition at line 127 of file PixelCPEClusterRepair.h.

References createfilelist::int, TrackerTopology::layer(), sistrip::layer_, and DetId::subdetId().

127  {
128  // check detector
129  if (detid.subdetId() == subdet_) {
130  // check layer
131  if ((layer_ == 0) || (layer_ == int(tTopo.layer(detid)))) {
132  return true;
133  } else
134  return false;
135  } else
136  return false;
137  }
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
unsigned int layer(const DetId &id) const

Member Data Documentation

int PixelCPEClusterRepair::Rule::layer_
private

Definition at line 141 of file PixelCPEClusterRepair.h.

int PixelCPEClusterRepair::Rule::subdet_
private

Definition at line 140 of file PixelCPEClusterRepair.h.