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  maxNrOfCosmicClusters_ = conf.getParameter<unsigned int>("MaxNumberOfCosmicClusters");
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>("MaxNumberOfCosmicClusters", 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 }
41 
43 
45  if (!doACheck_)
46  return 0;
47 
48  // get special input for cosmic cluster multiplicity filter
50  e.getByToken(token_sc, clusterDSV);
52  if (!clusterDSV.failedToGet()) {
53  const edmNew::DetSetVector<SiStripCluster>& input = *clusterDSV;
54 
55  if (ignoreDetsAboveNClusters_ == 0) {
56  totals.strip = input.dataSize();
57  totals.stripdets = input.size();
58  } else {
59  //loop over detectors
60  totals.strip = 0;
61  totals.stripdets = 0;
62  edmNew::DetSetVector<SiStripCluster>::const_iterator DSViter = input.begin(), DSViter_end = input.end();
63  for (; DSViter != DSViter_end; DSViter++) {
64  size_t siz = DSViter->size();
65  if (siz > ignoreDetsAboveNClusters_)
66  continue;
67  totals.strip += siz;
68  totals.stripdets++;
69  }
70  }
71  }
72  if (totals.strip > int(maxNrOfCosmicClusters_))
73  return totals.strip;
74 
75  // get special input for pixel cluster multiplicity filter
77  e.getByToken(token_pc, pixelClusterDSV);
78  if (!pixelClusterDSV.failedToGet()) {
79  const edmNew::DetSetVector<SiPixelCluster>& input = *pixelClusterDSV;
80 
81  if (ignoreDetsAboveNClusters_ == 0) {
82  totals.pixel = input.dataSize();
83  totals.pixeldets = input.size();
84  } else {
85  //loop over detectors
86  totals.pixel = 0;
87  totals.pixeldets = 0;
88  edmNew::DetSetVector<SiPixelCluster>::const_iterator DSViter = input.begin(), DSViter_end = input.end();
89  for (; DSViter != DSViter_end; DSViter++) {
90  size_t siz = DSViter->size();
91  if (siz > ignoreDetsAboveNClusters_)
92  continue;
93  totals.pixel += siz;
94  totals.pixeldets++;
95  }
96  }
97  } else {
98  //say something's wrong.
99  edm::LogError("ClusterChecker")
100  << "could not get any SiPixel cluster collections of type edm::DetSetVector<SiPixelCluster> with label: "
102  totals.pixel = 999999;
103  }
104  if (totals.pixel > int(maxNrOfPixelClusters_))
105  return totals.pixel;
106 
107  if (!selector_(totals))
108  return totals.strip;
109  return 0;
110 }
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 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:47
bool failedToGet() const
Definition: HandleBase.h:72
int pixel
number of strip clusters
unsigned int maxNrOfCosmicClusters_
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