12 #ifdef VERIFY_PH2_TK_CLUS
40 #ifdef VERIFY_PH2_TK_CLUS
41 std::unique_ptr< Phase2TrackerClusterizerAlgorithm > clusterizer_;
53 #ifdef VERIFY_PH2_TK_CLUS
57 produces< Phase2TrackerCluster1DCollectionNew >();
70 event.getByToken(
token_, digis);
72 #ifdef VERIFY_PH2_TK_CLUS
78 auto outputClustersOld = std::make_unique<Phase2TrackerCluster1DCollectionNew>();
80 auto outputClusters = std::make_unique<Phase2TrackerCluster1DCollectionNew>();
83 for (
auto DSViter : *digis) {
84 DetId detId(DSViter.detId());
88 algo.clusterizeDetUnit(DSViter,
clusters);
91 #ifdef VERIFY_PH2_TK_CLUS
101 clusterizer_->setup(pixDet);
105 clusterizer_->clusterizeDetUnit(DSViter, clustersOld);
106 if (clustersOld.empty()) clustersOld.
abort();
108 if (
clusters.size() != clustersOld.size()) {
109 std::cout <<
"SIZEs " << int(detId) <<
' ' <<
clusters.size() <<
' ' << clustersOld.size() << std::endl;
110 for (
auto const &
cl :
clusters)
std::cout <<
cl.size() <<
' ' <<
cl.threshold() <<
' ' <<
cl.firstRow() <<
' ' <<
cl.column() << std::endl;
112 for (
auto const &
cl : clustersOld)
std::cout <<
cl.size() <<
' ' <<
cl.threshold() <<
' ' <<
cl.firstRow() <<
' ' <<
cl.column() << std::endl;
118 #ifdef VERIFY_PH2_TK_CLUS
120 assert(outputClusters->dataSize()==outputClustersOld->dataSize());
121 for (
auto i=0U;
i<outputClusters->dataSize(); ++
i) {
122 assert(outputClusters->data()[
i].size() == outputClustersOld->data()[
i].size());
123 assert(outputClusters->data()[
i].threshold() == outputClustersOld->data()[
i].threshold());
124 assert(outputClusters->data()[
i].firstRow() == outputClustersOld->data()[
i].firstRow());
125 assert(outputClusters->data()[
i].column() == outputClustersOld->data()[
i].column());
130 outputClusters->shrink_to_fit();
const TrackerGeomDet * idToDetUnit(DetId) const
Return the pointer to the GeomDetUnit corresponding to a given DetId.
#define DEFINE_FWK_MODULE(type)
virtual ~Phase2TrackerClusterizer()
edm::EDGetTokenT< edm::DetSetVector< Phase2TrackerDigi > > token_
Phase2TrackerClusterizer(const edm::ParameterSet &conf)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
virtual void produce(edm::Event &event, const edm::EventSetup &eventSetup) override