CMS 3D CMS Logo

ClusterChecker.cc
Go to the documentation of this file.
2 
7 
9 
11 
13  : doACheck_(conf.getParameter<bool>("doClusterCheck")),
14  selector_(conf.getParameter<bool>("doClusterCheck") && conf.existsAs<std::string>("cut")
15  ? conf.getParameter<std::string>("cut")
16  : "") {
17  if (doACheck_) {
18  clusterCollectionInputTag_ = conf.getParameter<edm::InputTag>("ClusterCollectionLabel");
19  pixelClusterCollectionInputTag_ = conf.getParameter<edm::InputTag>("PixelClusterCollectionLabel");
22  maxNrOfStripClusters_ = conf.getParameter<unsigned int>("MaxNumberOfStripClusters");
23  maxNrOfPixelClusters_ = conf.getParameter<unsigned int>("MaxNumberOfPixelClusters");
24  if (conf.existsAs<uint32_t>("DontCountDetsAboveNClusters")) {
25  ignoreDetsAboveNClusters_ = conf.getParameter<uint32_t>("DontCountDetsAboveNClusters");
26  } else {
28  }
29  }
30 }
31 
33  desc.add<bool>("doClusterCheck", true);
34  desc.add<unsigned>("MaxNumberOfStripClusters", 400000);
35  desc.add<edm::InputTag>("ClusterCollectionLabel", edm::InputTag("siStripClusters"));
36  desc.add<unsigned>("MaxNumberOfPixelClusters", 40000);
37  desc.add<edm::InputTag>("PixelClusterCollectionLabel", edm::InputTag("siPixelClusters"));
38  desc.add<std::string>("cut",
39  "strip < 400000 && pixel < 40000 && (strip < 50000 + 10*pixel) && (pixel < 5000 + 0.1*strip)");
40  desc.add<uint32_t>("DontCountDetsAboveNClusters", 0);
41 }
42 
44 
46  if (!doACheck_)
47  return 0;
48 
49  // get special input for cosmic cluster multiplicity filter
51  e.getByToken(token_sc, clusterDSV);
53  if (!clusterDSV.failedToGet()) {
54  const edmNew::DetSetVector<SiStripCluster>& input = *clusterDSV;
55 
56  if (ignoreDetsAboveNClusters_ == 0) {
57  totals.strip = input.dataSize();
58  totals.stripdets = input.size();
59  } else {
60  //loop over detectors
61  totals.strip = 0;
62  totals.stripdets = 0;
63  edmNew::DetSetVector<SiStripCluster>::const_iterator DSViter = input.begin(), DSViter_end = input.end();
64  for (; DSViter != DSViter_end; DSViter++) {
65  size_t siz = DSViter->size();
66  if (siz > ignoreDetsAboveNClusters_)
67  continue;
68  totals.strip += siz;
69  totals.stripdets++;
70  }
71  }
72  }
73  if (totals.strip > int(maxNrOfStripClusters_))
74  return totals.strip;
75 
76  // get special input for pixel cluster multiplicity filter
78  e.getByToken(token_pc, pixelClusterDSV);
79  if (!pixelClusterDSV.failedToGet()) {
80  const edmNew::DetSetVector<SiPixelCluster>& input = *pixelClusterDSV;
81 
82  if (ignoreDetsAboveNClusters_ == 0) {
83  totals.pixel = input.dataSize();
84  totals.pixeldets = input.size();
85  } else {
86  //loop over detectors
87  totals.pixel = 0;
88  totals.pixeldets = 0;
89  edmNew::DetSetVector<SiPixelCluster>::const_iterator DSViter = input.begin(), DSViter_end = input.end();
90  for (; DSViter != DSViter_end; DSViter++) {
91  size_t siz = DSViter->size();
92  if (siz > ignoreDetsAboveNClusters_)
93  continue;
94  totals.pixel += siz;
95  totals.pixeldets++;
96  }
97  }
98  } else {
99  //say something's wrong.
100  edm::LogError("ClusterChecker")
101  << "could not get any SiPixel cluster collections of type edm::DetSetVector<SiPixelCluster> with label: "
103  totals.pixel = 999999;
104  }
105  if (totals.pixel > int(maxNrOfPixelClusters_))
106  return totals.pixel;
107 
108  if (!selector_(totals))
109  return totals.strip;
110  return 0;
111 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
int stripdets
number of pixel clusters
int pixeldets
number of strip detectors with at least one cluster
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
ClusterChecker()=delete
size_t tooManyClusters(const edm::Event &e) const
edm::InputTag clusterCollectionInputTag_
StringCutObjectSelector< reco::utils::ClusterTotals > selector_
unsigned int maxNrOfStripClusters_
unsigned int maxNrOfPixelClusters_
static void fillDescriptions(edm::ParameterSetDescription &description)
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:172
Log< level::Error, false > LogError
static std::string const input
Definition: EdmProvDump.cc:50
bool failedToGet() const
Definition: HandleBase.h:72
int pixel
number of strip clusters
unsigned int ignoreDetsAboveNClusters_
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
size_type size() const
edm::InputTag pixelClusterCollectionInputTag_
edm::EDGetTokenT< edmNew::DetSetVector< SiPixelCluster > > token_pc
edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > token_sc