CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 694 of file PixelCPEClusterRepair.cc.

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

694  {
695  static const boost::regex rule("([A-Z]+)(\\s+(\\d+))?");
696  boost::cmatch match;
697  // match and check it works
698  if (!regex_match(str.c_str(), match, rule))
699  throw cms::Exception("Configuration") << "Rule '" << str << "' not understood.\n";
700 
701  // subdet
702  subdet_ = -1;
703  if (strncmp(match[1].first, "PXB", 3) == 0)
705  else if (strncmp(match[1].first, "PXE", 3) == 0)
707  if (subdet_ == -1) {
708  throw cms::Exception("PixelCPEClusterRepair::Configuration")
709  << "Detector '" << match[1].first << "' not understood. Should be PXB, PXE.\n";
710  }
711  // layer (if present)
712  if (match[3].first != match[3].second) {
713  layer_ = atoi(match[3].first);
714  } else {
715  layer_ = 0;
716  }
717 } //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 TrackerTopology::layer(), layer_, subdet_, 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.

Referenced by recommend(), and Rule().

int PixelCPEClusterRepair::Rule::subdet_
private

Definition at line 140 of file PixelCPEClusterRepair.h.

Referenced by recommend(), and Rule().