CMS 3D CMS Logo

UncleanSCRecoveryProducer.cc
Go to the documentation of this file.
1 // C/C++ headers
2 #include <iostream>
3 #include <vector>
4 #include <memory>
5 
6 // Framework
12 // Reconstruction Classes
18 
19 // Class header file
22 
23 /*
24 UncleanSCRecoveryProducer:
25 ^^^^^^^^^^^^^^^^^^^^^^^^^^
26 
27 takes the collections of flagged clean and unclean only SC
28 (this is the output of UnifiedSCCollectionProducer) and
29 recovers the original collection of unclean SC.
30 
31 18 Aug 2010
32 Nikolaos Rompotis and Chris Seez - Imperial College London
33 many thanks to David Wardrope, Shahram Rahatlou and Federico Ferri
34 */
35 
37  : cleanBcCollection_(consumes<reco::BasicClusterCollection>(ps.getParameter<edm::InputTag>("cleanBcCollection"))),
38  cleanScCollection_(consumes<reco::SuperClusterCollection>(ps.getParameter<edm::InputTag>("cleanScCollection"))),
39  uncleanBcCollection_(
40  consumes<reco::BasicClusterCollection>(ps.getParameter<edm::InputTag>("uncleanBcCollection"))),
41  uncleanScCollection_(
42  consumes<reco::SuperClusterCollection>(ps.getParameter<edm::InputTag>("uncleanScCollection"))),
43  bcCollection_(ps.getParameter<std::string>("bcCollection")),
44  scCollection_(ps.getParameter<std::string>("scCollection")) {
45  // the products:
46  produces<reco::BasicClusterCollection>(bcCollection_);
47  produces<reco::SuperClusterCollection>(scCollection_);
48 }
49 
51  // __________________________________________________________________________
52  //
53  // cluster collections:
56  //
59  // clean collections ________________________________________________________
60  evt.getByToken(cleanScCollection_, pCleanSC);
61  const reco::SuperClusterCollection cleanSC = *(pCleanSC.product());
62 
63  // unclean collections ______________________________________________________
64  evt.getByToken(uncleanBcCollection_, pUncleanBC);
65  const reco::BasicClusterCollection uncleanBC = *(pUncleanBC.product());
66  //
67  evt.getByToken(uncleanScCollection_, pUncleanSC);
68  const reco::SuperClusterCollection uncleanSC = *(pUncleanSC.product());
69  int uncleanSize = pUncleanSC->size();
70  int cleanSize = pCleanSC->size();
71 
72  LogTrace("EcalCleaning") << "Size of Clean Collection: " << cleanSize << ", uncleanSize: " << uncleanSize;
73 
74  // collections are all taken now ____________________________________________
75  //
76  // the collections to be produced ___________________________________________
77  reco::BasicClusterCollection basicClusters;
79  //
80  //
81  // collect all the basic clusters of the SC that belong to the unclean
82  // collection and put them into the basicClusters vector
83  // keep the information of which SC they belong to
84  //
85  // loop over the unclean sc: all SC will join the new collection
86  std::vector<std::pair<int, int> > basicClusterOwner; // counting all
87 
88  std::vector<DetId> scUncleanSeedDetId; // counting the unclean
89  for (int isc = 0; isc < uncleanSize; ++isc) {
90  const reco::SuperCluster unsc = uncleanSC[isc];
91  scUncleanSeedDetId.push_back(unsc.seed()->seed());
93  for (; bciter != unsc.clustersEnd(); ++bciter) {
94  // the basic clusters
95  basicClusters.push_back(**bciter);
96  // index of the unclean SC
97  basicClusterOwner.push_back(std::make_pair(isc, 0));
98  }
99  }
100  // loop over the clean: only the ones which are in common with the unclean
101  // are taken into account
102 
103  std::vector<DetId> scCleanSeedDetId; // counting the clean
104  std::vector<int> isToBeKept;
105  for (int isc = 0; isc < cleanSize; ++isc) {
106  reco::SuperClusterRef cscRef(pCleanSC, isc);
107  scCleanSeedDetId.push_back(cscRef->seed()->seed());
108  for (reco::CaloCluster_iterator bciter = cscRef->clustersBegin(); bciter != cscRef->clustersEnd(); ++bciter) {
109  // the basic clusters
110  basicClusters.push_back(**bciter);
111  // index of the clean SC
112  basicClusterOwner.push_back(std::make_pair(isc, 1));
113  }
114  if (cscRef->isInUnclean())
115  isToBeKept.push_back(1);
116  else
117  isToBeKept.push_back(0);
118  }
119  //
120  // now export the basic clusters into the event and get them back
121  auto basicClusters_p = std::make_unique<reco::BasicClusterCollection>();
122  basicClusters_p->assign(basicClusters.begin(), basicClusters.end());
124  if (!(bccHandle.isValid())) {
125  edm::LogWarning("MissingInput") << "could not handle the new BasicClusters!";
126  return;
127  }
128  reco::BasicClusterCollection basicClustersProd = *bccHandle;
129 
130  LogTrace("EcalCleaning") << "Got the BasicClusters from the event again";
131  int bcSize = bccHandle->size();
132  //
133  // now we can create the SC collection
134  //
135  // run over the unclean SC: all to be kept here
136  for (int isc = 0; isc < uncleanSize; ++isc) {
137  reco::CaloClusterPtrVector clusterPtrVector;
138  // the seed is the basic cluster with the highest energy
140  for (int jbc = 0; jbc < bcSize; ++jbc) {
141  std::pair<int, int> theBcOwner = basicClusterOwner[jbc];
142  if (theBcOwner.first == isc && theBcOwner.second == 0) {
143  reco::CaloClusterPtr currentClu = reco::CaloClusterPtr(bccHandle, jbc);
144  clusterPtrVector.push_back(currentClu);
145  if (scUncleanSeedDetId[isc] == currentClu->seed()) {
146  seed = currentClu;
147  }
148  }
149  }
150  const reco::SuperCluster unsc = uncleanSC[isc];
151  reco::SuperCluster newSC(unsc.energy(), unsc.position(), seed, clusterPtrVector);
153  superClusters.push_back(newSC);
154  }
155  // run over the clean SC: only those who are in common between the
156  // clean and unclean collection are kept
157  for (int isc = 0; isc < cleanSize; ++isc) {
158  reco::SuperClusterRef cscRef(pCleanSC, isc);
159  if (not cscRef->isInUnclean())
160  continue;
161  reco::CaloClusterPtrVector clusterPtrVector;
162  // the seed is the basic cluster with the highest energy
164  for (int jbc = 0; jbc < bcSize; ++jbc) {
165  std::pair<int, int> theBcOwner = basicClusterOwner[jbc];
166  if (theBcOwner.first == isc && theBcOwner.second == 1) {
167  reco::CaloClusterPtr currentClu = reco::CaloClusterPtr(bccHandle, jbc);
168  clusterPtrVector.push_back(currentClu);
169  if (scCleanSeedDetId[isc] == currentClu->seed()) {
170  seed = currentClu;
171  }
172  }
173  }
174  reco::SuperCluster newSC(cscRef->energy(), cscRef->position(), seed, clusterPtrVector);
176  superClusters.push_back(newSC);
177  }
178 
179  auto superClusters_p = std::make_unique<reco::SuperClusterCollection>();
180  superClusters_p->assign(superClusters.begin(), superClusters.end());
181 
182  evt.put(std::move(superClusters_p), scCollection_);
183 
184  LogTrace("EcalCleaning") << "Clusters (Basic/Super) added to the Event! :-)";
185 
186  // ----- debugging ----------
187  // print the new collection SC quantities
188  // print out the clean collection SC
189  LogTrace("EcalCleaning") << "Clean Collection SC ";
190  for (int i = 0; i < cleanSize; ++i) {
191  const reco::SuperCluster csc = cleanSC[i];
192  LogTrace("EcalCleaning") << " >>> clean #" << i << "; Energy: " << csc.energy() << " eta: " << csc.eta()
193  << " sc seed detid: " << csc.seed()->seed().rawId();
194  }
195  // the unclean SC
196  LogTrace("EcalCleaning") << "Unclean Collection SC ";
197  for (int i = 0; i < uncleanSize; ++i) {
198  const reco::SuperCluster usc = uncleanSC[i];
199  LogTrace("EcalCleaning") << " >>> unclean #" << i << "; Energy: " << usc.energy() << " eta: " << usc.eta()
200  << " sc seed detid: " << usc.seed()->seed().rawId();
201  }
202  // the new collection
203  LogTrace("EcalCleaning") << "The new SC clean collection with size " << superClusters.size();
204  for (unsigned int i = 0; i < superClusters.size(); ++i) {
205  const reco::SuperCluster nsc = superClusters[i];
206  LogTrace("EcalCleaning") << " >>> newSC #" << i << "; Energy: " << nsc.energy() << " eta: " << nsc.eta()
207  << " isClean=" << nsc.isInClean() << " isUnclean=" << nsc.isInUnclean()
208  << " sc seed detid: " << nsc.seed()->seed().rawId();
209  }
210 }
UncleanSCRecoveryProducer(const edm::ParameterSet &ps)
const math::XYZPoint & position() const
cluster centroid position
Definition: CaloCluster.h:153
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
bool isInUnclean() const
Definition: CaloCluster.h:198
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
void push_back(Ptr< T > const &iPtr)
Definition: PtrVector.h:149
edm::Ptr< CaloCluster > CaloClusterPtr
const edm::EDGetTokenT< reco::SuperClusterCollection > uncleanScCollection_
double eta() const
pseudorapidity of cluster centroid
Definition: CaloCluster.h:180
const edm::EDGetTokenT< reco::SuperClusterCollection > cleanScCollection_
void setFlags(uint32_t flags)
Definition: CaloCluster.h:193
std::vector< SuperCluster > SuperClusterCollection
collection of SuperCluser objectr
double energy() const
cluster energy
Definition: CaloCluster.h:148
#define LogTrace(id)
Definition: L1Track.h:19
bool isInClean() const
Definition: CaloCluster.h:197
const edm::EDGetTokenT< reco::BasicClusterCollection > uncleanBcCollection_
T const * product() const
Definition: Handle.h:69
std::vector< BasicCluster > BasicClusterCollection
collection of BasicCluster objects
fixed size matrix
HLT enums.
CaloCluster_iterator clustersBegin() const
fist iterator over BasicCluster constituents
Definition: SuperCluster.h:86
const CaloClusterPtr & seed() const
seed BasicCluster
Definition: SuperCluster.h:77
void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
def move(src, dest)
Definition: eostools.py:511
CaloCluster_iterator clustersEnd() const
last iterator over BasicCluster constituents
Definition: SuperCluster.h:89