CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/SimTracker/TrackerHitAssociation/src/TrackerHitAssociator.cc

Go to the documentation of this file.
00001 // File: TrackerHitAssociator.cc
00002 
00003 #include <memory>
00004 #include <string>
00005 #include <vector>
00006 
00007 #include "SimTracker/TrackerHitAssociation/interface/TrackerHitAssociator.h"
00008 //--- for Geometry:
00009 #include "DataFormats/Common/interface/Ref.h"
00010 #include "DataFormats/DetId/interface/DetId.h"
00011 #include "DataFormats/SiStripDetId/interface/StripSubdetector.h"
00012 #include "DataFormats/SiPixelDetId/interface/PixelSubdetector.h"
00013 
00014 #include "SimDataFormats/CrossingFrame/interface/CrossingFrame.h"
00015 
00016 //for accumulate
00017 #include <numeric>
00018 #include <iostream>
00019 
00020 using namespace std;
00021 using namespace edm;
00022 
00023 //
00024 // Constructor 
00025 //
00026 TrackerHitAssociator::TrackerHitAssociator(const edm::Event& e)  : 
00027   myEvent_(e), 
00028   doPixel_( true ),
00029   doStrip_( true ), 
00030   doTrackAssoc_( false ) {
00031   trackerContainers.clear();
00032   //
00033   // Take by default all tracker SimHits
00034   //
00035   trackerContainers.push_back("g4SimHitsTrackerHitsTIBLowTof");
00036   trackerContainers.push_back("g4SimHitsTrackerHitsTIBHighTof");
00037   trackerContainers.push_back("g4SimHitsTrackerHitsTIDLowTof");
00038   trackerContainers.push_back("g4SimHitsTrackerHitsTIDHighTof");
00039   trackerContainers.push_back("g4SimHitsTrackerHitsTOBLowTof");
00040   trackerContainers.push_back("g4SimHitsTrackerHitsTOBHighTof");
00041   trackerContainers.push_back("g4SimHitsTrackerHitsTECLowTof");
00042   trackerContainers.push_back("g4SimHitsTrackerHitsTECHighTof");
00043   trackerContainers.push_back("g4SimHitsTrackerHitsPixelBarrelLowTof");
00044   trackerContainers.push_back("g4SimHitsTrackerHitsPixelBarrelHighTof");
00045   trackerContainers.push_back("g4SimHitsTrackerHitsPixelEndcapLowTof");
00046   trackerContainers.push_back("g4SimHitsTrackerHitsPixelEndcapHighTof");
00047 
00048   // Step A: Get Inputs
00049   //MAKE THIS PRIVATE MEMBERS 
00050   //  edm::Handle<CrossingFrame<PSimHit> > cf_simhit;
00051   //  std::vector<const CrossingFrame<PSimHit> *> cf_simhitvec;
00052 
00053   for(uint32_t i = 0; i< trackerContainers.size();i++){
00054     e.getByLabel("mix",trackerContainers[i],cf_simhit);
00055     cf_simhitvec.push_back(cf_simhit.product());
00056   }
00057   
00058   std::auto_ptr<MixCollection<PSimHit> > allTrackerHits(new MixCollection<PSimHit>(cf_simhitvec));
00059   TrackerHits = (*allTrackerHits);
00060 
00061  //Loop on PSimHit
00062   SimHitMap.clear();
00063   
00064   MixCollection<PSimHit>::iterator isim;
00065   for (isim=allTrackerHits->begin(); isim!= allTrackerHits->end();isim++) {
00066     SimHitMap[(*isim).detUnitId()].push_back((*isim));
00067   }
00068   
00069   if(doStrip_) e.getByLabel("simSiStripDigis", stripdigisimlink);
00070   if(doPixel_) e.getByLabel("simSiPixelDigis", pixeldigisimlink);
00071   
00072 }
00073 
00074 //
00075 // Constructor with configurables
00076 //
00077 TrackerHitAssociator::TrackerHitAssociator(const edm::Event& e, const edm::ParameterSet& conf)  : 
00078   myEvent_(e), 
00079   doPixel_( conf.getParameter<bool>("associatePixel") ),
00080   doStrip_( conf.getParameter<bool>("associateStrip") ),
00081   doTrackAssoc_( conf.getParameter<bool>("associateRecoTracks") ){
00082   
00083   //if track association there is no need to acces the CrossingFrame
00084   if(!doTrackAssoc_) {
00085     
00086   trackerContainers.clear();
00087   trackerContainers = conf.getParameter<std::vector<std::string> >("ROUList");
00088 
00089     // Step A: Get Inputs
00090     //    edm::Handle<CrossingFrame<PSimHit> > cf_simhit;
00091     //    std::vector<const CrossingFrame<PSimHit> *> cf_simhitvec;
00092     for(uint32_t i = 0; i< trackerContainers.size();i++){
00093       e.getByLabel("mix",trackerContainers[i],cf_simhit);
00094       cf_simhitvec.push_back(cf_simhit.product());
00095     }
00096 
00097     //  std::cout << "SIMHITVEC SIZE = " <<  cf_simhitvec.size() << std::endl;
00098     
00099     //    TrackerHits = new MixCollection<PSimHit>(cf_simhitvec);
00100     //std::auto_ptr<MixCollection<PSimHit> > allTrackerHits(TrackerHits);
00101     //   std::auto_ptr<MixCollection<PSimHit> > allTrackerHits(new MixCollection<PSimHit>(cf_simhitvec));
00102     std::auto_ptr<MixCollection<PSimHit> > allTrackerHits(new MixCollection<PSimHit>(cf_simhitvec));
00103     TrackerHits = (*allTrackerHits);
00104     
00105     //Loop on PSimHit
00106     SimHitMap.clear();
00107     
00108     MixCollection<PSimHit>::iterator isim;
00109     for (isim=allTrackerHits->begin(); isim!= allTrackerHits->end();isim++) {
00110       SimHitMap[(*isim).detUnitId()].push_back((*isim));
00111     }
00112     
00113   }
00114 
00115   if(doStrip_) e.getByLabel("simSiStripDigis", stripdigisimlink);
00116   if(doPixel_) e.getByLabel("simSiPixelDigis", pixeldigisimlink);
00117   
00118 }
00119 
00120 std::vector<PSimHit> TrackerHitAssociator::associateHit(const TrackingRecHit & thit) 
00121 {
00122   
00123   //check in case of TTRH
00124   if(const TransientTrackingRecHit * ttrh = dynamic_cast<const TransientTrackingRecHit *>(&thit)) {
00125     std::cout << "calling associateHit for TransientTRH" << std::endl;
00126     return associateHit(*ttrh->hit());
00127   }
00128  
00129   //vector with the matched SimHit
00130   std::vector<PSimHit> result; 
00131   //  std::vector<PSimHit> result_old; 
00132   //initialize vectors!
00133   simtrackid.clear();
00134   simhitCFPos.clear();
00135   StripHits = false;
00136   
00137   //get the Detector type of the rechit
00138   DetId detid=  thit.geographicalId();
00139   uint32_t detID = detid.rawId();
00140 
00141   //  cout << "Associator ---> get Detid " << detID << endl;
00142   //check we are in the strip tracker
00143   if(detid.subdetId() == StripSubdetector::TIB ||
00144      detid.subdetId() == StripSubdetector::TOB || 
00145      detid.subdetId() == StripSubdetector::TID ||
00146      detid.subdetId() == StripSubdetector::TEC) 
00147     {
00148       //check if it is a simple SiStripRecHit2D
00149       if(const SiStripRecHit2D * rechit = 
00150          dynamic_cast<const SiStripRecHit2D *>(&thit))
00151         {         
00152           //std::cout << "associate to hit2D" << std::endl;
00153           associateSimpleRecHit(rechit, simtrackid);
00154         }
00155       else if(const SiStripRecHit1D * rechit = 
00156               dynamic_cast<const SiStripRecHit1D *>(&thit)) //check if it is a SiStripRecHit1D
00157         {         
00158           //std::cout << "associate to hit1D" << std::endl;
00159           associateSiStripRecHit1D(rechit,simtrackid);
00160         }
00161       else if(const SiStripMatchedRecHit2D * rechit = 
00162               dynamic_cast<const SiStripMatchedRecHit2D *>(&thit)) //check if it is a matched SiStripMatchedRecHit2D
00163         {         
00164           //std::cout << "associate to matched" << std::endl;
00165           simtrackid = associateMatchedRecHit(rechit);
00166         }
00167       else if(const ProjectedSiStripRecHit2D * rechit = 
00168               dynamic_cast<const ProjectedSiStripRecHit2D *>(&thit)) //check if it is a  ProjectedSiStripRecHit2D
00169         {         
00170           //std::cout << "associate to projectedHit" << std::endl;
00171           simtrackid = associateProjectedRecHit(rechit);
00172           detid = rechit->originalHit().geographicalId();
00173           detID = detid.rawId();
00174         }
00175       else {
00176         //std::cout << "associate to Invalid strip hit??" << std::endl;
00177         //throw cms::Exception("Unknown RecHit Type") << "TrackerHitAssociator failed first casting of " << typeid(thit).name() << " type ";
00178       }
00179 
00180     }
00181   //check we are in the pixel tracker
00182   if( (unsigned int)(detid.subdetId()) == PixelSubdetector::PixelBarrel || 
00183       (unsigned int)(detid.subdetId()) == PixelSubdetector::PixelEndcap) 
00184     {
00185       if(const SiPixelRecHit * rechit = dynamic_cast<const SiPixelRecHit *>(&thit))
00186         {         
00187           //std::cout << "associate to pixelHit" << std::endl;
00188           associatePixelRecHit(rechit,simtrackid );
00189         }
00190     }
00191   //check if these are GSRecHits (from FastSim)
00192   
00193   if(const SiTrackerGSRecHit2D * rechit = dynamic_cast<const SiTrackerGSRecHit2D *>(&thit))
00194     {
00195       simtrackid = associateGSRecHit(rechit);
00196     }
00197   if (const SiTrackerMultiRecHit * rechit = dynamic_cast<const SiTrackerMultiRecHit *>(&thit)){
00198     return associateMultiRecHit(rechit);
00199   }
00200   
00201   //check if these are GSMatchedRecHits (from FastSim)
00202   if(const SiTrackerGSMatchedRecHit2D * rechit = dynamic_cast<const SiTrackerGSMatchedRecHit2D *>(&thit))
00203     {
00204       simtrackid = associateGSMatchedRecHit(rechit);
00205     }
00206   
00207   //
00208   //Save the SimHits in a vector. for the macthed hits both the rphi and stereo simhits are saved. 
00209   //
00210   
00211   if(StripHits){
00212     //USE THIS FOR STRIPS
00213     //  std::cout << "NEW SIZE =  " << simhitCFPos.size() << std::endl;
00214     
00215     for(size_t i=0; i<simhitCFPos.size(); i++){
00216       //std::cout << "NEW CFPOS " << simhitCFPos[i] << endl;
00217       //std::cout << "NEW LOCALPOS " <<  TrackerHits.getObject(simhitCFPos[i]).localPosition()  << endl;
00218       result.push_back( TrackerHits.getObject(simhitCFPos[i]));
00219     }
00220   }else {
00221     
00222     //now get the SimHit from the trackid
00223     vector<PSimHit> simHit; 
00224     std::map<unsigned int, std::vector<PSimHit> >::const_iterator it = SimHitMap.find(detID);
00225     simHit.clear();
00226     if (it!= SimHitMap.end()){
00227       simHit = it->second;
00228       vector<PSimHit>::const_iterator simHitIter = simHit.begin();
00229       vector<PSimHit>::const_iterator simHitIterEnd = simHit.end();
00230       for (;simHitIter != simHitIterEnd; ++simHitIter) {
00231         const PSimHit ihit = *simHitIter;
00232         unsigned int simHitid = ihit.trackId();
00233         EncodedEventId simHiteid = ihit.eventId();
00234         
00235         for(size_t i=0; i<simtrackid.size();i++){
00236           if(simHitid == simtrackid[i].first && simHiteid == simtrackid[i].second){ 
00237             //    cout << "Associator ---> ID" << ihit.trackId() << " Simhit x= " << ihit.localPosition().x() 
00238             //         << " y= " <<  ihit.localPosition().y() << " z= " <<  ihit.localPosition().x() << endl; 
00239             result.push_back(ihit);
00240           }
00241         }
00242       }
00243     }else{
00245       std::map<unsigned int, std::vector<PSimHit> >::const_iterator itrphi = 
00246         SimHitMap.find(detID+2);//iterator to the simhit in the rphi module
00247       std::map<unsigned int, std::vector<PSimHit> >::const_iterator itster = 
00248         SimHitMap.find(detID+1);//iterator to the simhit in the stereo module
00249       if (itrphi!= SimHitMap.end()&&itster!=SimHitMap.end()){
00250         simHit = itrphi->second;
00251         simHit.insert(simHit.end(),(itster->second).begin(),(itster->second).end());
00252         vector<PSimHit>::const_iterator simHitIter = simHit.begin();
00253         vector<PSimHit>::const_iterator simHitIterEnd = simHit.end();
00254         for (;simHitIter != simHitIterEnd; ++simHitIter) {
00255           const PSimHit ihit = *simHitIter;
00256           unsigned int simHitid = ihit.trackId();
00257           EncodedEventId simHiteid = ihit.eventId();
00258           
00259           //===>>>>>change here!!!!
00260           //    for(size_t i=0; i<simtrackid.size();i++){
00261           //  cout << " GluedDet Associator -->  check sihit id's = " << simHitid <<"; compared id's = "<< simtrackid[i] <<endl;
00262           // if(simHitid == simtrackid[i]){ //exclude the geant particles. they all have the same id
00263           for(size_t i=0; i<simtrackid.size();i++){
00264             if(simHitid == simtrackid[i].first && simHiteid == simtrackid[i].second){ 
00265               //          cout << "GluedDet Associator ---> ID" << ihit.trackId() << " Simhit x= " << ihit.localPosition().x() 
00266               //               << " y= " <<  ihit.localPosition().y() << " z= " <<  ihit.localPosition().x() << endl; 
00267               result.push_back(ihit);
00268             }
00269           }
00270         }
00271       }
00272     }
00273   }
00274 
00275 
00276   return result;  
00277 }
00278 
00279 //std::vector<unsigned int> TrackerHitAssociator::associateHitId(const TrackingRecHit & thit) 
00280 std::vector< SimHitIdpr > TrackerHitAssociator::associateHitId(const TrackingRecHit & thit) 
00281 {
00282   std::vector< SimHitIdpr > simhitid;
00283   associateHitId(thit, simhitid);
00284   return simhitid;
00285 }
00286 
00287 void TrackerHitAssociator::associateHitId(const TrackingRecHit & thit, std::vector< SimHitIdpr > & simtkid) 
00288 {
00289   
00290   //check in case of TTRH
00291   if(const TransientTrackingRecHit * ttrh = dynamic_cast<const TransientTrackingRecHit *>(&thit)) {
00292     associateHitId(*ttrh->hit(), simtkid);
00293   }
00294   else{
00295     simtkid.clear();
00296     simhitCFPos.clear();
00297     //vector with the associated Simtkid 
00298     //vector with the CF position of the associated simhits
00299     
00300   //get the Detector type of the rechit
00301     DetId detid=  thit.geographicalId();
00302     //apparently not used
00303     //  uint32_t detID = detid.rawId();
00304     if (const SiTrackerMultiRecHit * rechit = dynamic_cast<const SiTrackerMultiRecHit *>(&thit)){
00305        simtkid=associateMultiRecHitId(rechit);
00306     }
00307     
00308   //cout << "Associator ---> get Detid " << detID << endl;
00309   //check we are in the strip tracker
00310     if(detid.subdetId() == StripSubdetector::TIB ||
00311        detid.subdetId() == StripSubdetector::TOB || 
00312        detid.subdetId() == StripSubdetector::TID ||
00313        detid.subdetId() == StripSubdetector::TEC) 
00314       {
00315         //check if it is a simple SiStripRecHit2D
00316         if(const SiStripRecHit2D * rechit = 
00317            dynamic_cast<const SiStripRecHit2D *>(&thit))
00318           {       
00319             associateSimpleRecHit(rechit, simtkid);
00320           }
00321         //check if it is a matched SiStripMatchedRecHit2D
00322         else  if(const SiStripRecHit1D * rechit = 
00323                  dynamic_cast<const SiStripRecHit1D *>(&thit))
00324           {       
00325             associateSiStripRecHit1D(rechit,simtkid);
00326           }
00327         //check if it is a matched SiStripMatchedRecHit2D
00328         else  if(const SiStripMatchedRecHit2D * rechit = 
00329                  dynamic_cast<const SiStripMatchedRecHit2D *>(&thit))
00330           {       
00331             simtkid = associateMatchedRecHit(rechit);
00332           }
00333         //check if it is a  ProjectedSiStripRecHit2D
00334         else if(const ProjectedSiStripRecHit2D * rechit = 
00335                 dynamic_cast<const ProjectedSiStripRecHit2D *>(&thit))
00336           {       
00337             simtkid = associateProjectedRecHit(rechit);
00338           }
00339         else{
00340           //std::cout << "associate to invalid" << std::endl;
00341           //throw cms::Exception("Unknown RecHit Type") << "TrackerHitAssociator failed second casting of " << typeid(thit).name() << " type ";
00342         }
00343       }
00344     //check we are in the pixel tracker
00345     else if( (unsigned int)(detid.subdetId()) == PixelSubdetector::PixelBarrel || 
00346              (unsigned int)(detid.subdetId()) == PixelSubdetector::PixelEndcap) 
00347       {
00348       if(const SiPixelRecHit * rechit = dynamic_cast<const SiPixelRecHit *>(&thit))
00349         {         
00350           associatePixelRecHit(rechit,simtkid );
00351         }
00352       }
00353     //check if these are GSRecHits (from FastSim)
00354     if(const SiTrackerGSRecHit2D * rechit = dynamic_cast<const SiTrackerGSRecHit2D *>(&thit))
00355       {
00356         simtkid = associateGSRecHit(rechit);
00357       }  
00358     if(const SiTrackerGSMatchedRecHit2D * rechit = dynamic_cast<const SiTrackerGSMatchedRecHit2D *>(&thit))
00359       {
00360         simtkid = associateGSMatchedRecHit(rechit);
00361       }
00362 
00363   }
00364 }
00365 
00366 
00367 void TrackerHitAssociator::associateSimpleRecHit(const SiStripRecHit2D * simplerechit, std::vector<SimHitIdpr>& simtrackid)
00368 {
00369   const SiStripCluster* clust = 0; 
00370   if(simplerechit->cluster().isNonnull())
00371     {
00372       clust=&(*simplerechit->cluster());
00373     }
00374   else if(simplerechit->cluster_regional().isNonnull())
00375     {
00376       clust=&(*simplerechit->cluster_regional());
00377     } 
00378   
00379   associateSimpleRecHitCluster(clust,simplerechit->geographicalId(),simtrackid);
00380 }
00381 
00382 
00383 //This function could be templated to avoid to repeat the same code twice??
00384 void TrackerHitAssociator::associateSiStripRecHit1D(const SiStripRecHit1D * simplerechit, std::vector<SimHitIdpr>& simtrackid)
00385 {
00386   const SiStripCluster* clust = 0; 
00387   if(simplerechit->cluster().isNonnull())
00388     {
00389       clust=&(*simplerechit->cluster());
00390     }
00391   else if(simplerechit->cluster_regional().isNonnull())
00392     {
00393       clust=&(*simplerechit->cluster_regional());
00394     } 
00395   associateSimpleRecHitCluster(clust,simplerechit->geographicalId(),simtrackid);
00396 }
00397 
00398 void TrackerHitAssociator::associateSimpleRecHitCluster(const SiStripCluster* clust,
00399                                                         const uint32_t& detID,
00400                                                         std::vector<SimHitIdpr>& theSimtrackid, std::vector<PSimHit>& simhit)
00401 {
00402 // Caller needs to clear simhit before calling this function
00403 
00404   //initialize vector
00405   theSimtrackid.clear();
00406   //initialize class vector
00407   simhitCFPos.clear();
00408 
00409   associateSimpleRecHitCluster(clust, detID, theSimtrackid);
00410 
00411   for(size_t i=0; i<simhitCFPos.size(); i++){
00412     simhit.push_back(TrackerHits.getObject(simhitCFPos[i]));
00413   }
00414 }
00415 
00416 void TrackerHitAssociator::associateSimpleRecHitCluster(const SiStripCluster* clust,
00417                                                         const uint32_t& detID,
00418                                                         std::vector<PSimHit>& simhit)
00419 {
00420 // Caller needs to clear simhit before calling this function
00421 
00422   //initialize class vectors
00423   simtrackid.clear();
00424   simhitCFPos.clear();
00425 
00426   associateSimpleRecHitCluster(clust, detID, simtrackid);
00427 
00428   for(size_t i=0; i<simhitCFPos.size(); i++){
00429     simhit.push_back(TrackerHits.getObject(simhitCFPos[i]));
00430   }
00431 }
00432 
00433 void TrackerHitAssociator::associateSimpleRecHitCluster(const SiStripCluster* clust,
00434                                                         const uint32_t& detID,
00435                                                         std::vector<SimHitIdpr>& simtrackid){
00436   //  std::cout <<"ASSOCIATE SIMPLE RECHIT" << std::endl;           
00437   StripHits =true;        
00438   
00439   //DetId detid=  clust->geographicalId();
00440   //  uint32_t detID = detid.rawId();
00441   
00442   //to store temporary charge information
00443   std::vector<SimHitIdpr> cache_simtrackid; 
00444   cache_simtrackid.clear();
00445   
00446   std::map<SimHitIdpr, vector<float> > temp_simtrackid;
00447   temp_simtrackid.clear();
00448   
00449   edm::DetSetVector<StripDigiSimLink>::const_iterator isearch = stripdigisimlink->find(detID); 
00450   if(isearch != stripdigisimlink->end()) {  //if it is not empty
00451     //link_detset is a structure, link_detset.data is a std::vector<StripDigiSimLink>
00452     //edm::DetSet<StripDigiSimLink> link_detset = (*stripdigisimlink)[detID];
00453     edm::DetSet<StripDigiSimLink> link_detset = (*isearch);
00454     
00455     if(clust!=0){//the cluster is valid
00456 
00457       //    const edm::Ref<edm::DetSetVector<SiStripCluster>, SiStripCluster, edm::refhelper::FindForDetSetVector<SiStripCluster> > clust=simplerechit->cluster();
00458       
00459       //float chg;
00460       int clusiz = clust->amplitudes().size();
00461       int first  = clust->firstStrip();     
00462       int last   = first + clusiz;
00463       
00464 //       std::cout << "CLUSTERSIZE " << clusiz << " first strip = " << first << " last strip = " << last-1 << std::endl;
00465 //       std::cout << " detID = " << detID << " DETSET size = " << link_detset.data.size() << std::endl;
00466       //use a vector
00467       std::vector<SimHitIdpr> idcachev;
00468       std::vector<int> CFposcachev;
00469       for(edm::DetSet<StripDigiSimLink>::const_iterator linkiter = link_detset.data.begin(); linkiter != link_detset.data.end(); linkiter++){
00470         //StripDigiSimLink link = *linkiter;
00471         
00472         if( (int)(linkiter->channel()) >= first  && (int)(linkiter->channel()) < last ){
00473           
00474           //check this digisimlink
00475 //        printf("%s%4d%s%8d%s%3d%s%8.4f\n", "CHANNEL = ", linkiter->channel(), " TrackID = ", linkiter->SimTrackId(),
00476 //               " Process = ", TrackerHits.getObject(linkiter->CFposition()-1).processType(), " fraction = ", linkiter->fraction());
00477           /*
00478             std::cout << "CHECKING CHANNEL  = " << linkiter->channel()   << std::endl;
00479             std::cout << "TrackID  = " << linkiter->SimTrackId()  << std::endl;
00480             std::cout << "Position = " << linkiter->CFposition()  << std::endl;
00481             std::cout << " POS -1 = " << TrackerHits.getObject(linkiter->CFposition()-1).localPosition() << std::endl;
00482             std::cout << " Process = " << TrackerHits.getObject(linkiter->CFposition()-1).processType() << std::endl;
00483             std::cout << " fraction = " << linkiter->fraction() << std::endl;
00484           */
00485           
00486           SimHitIdpr currentId(linkiter->SimTrackId(), linkiter->eventId());
00487           
00488           //create a vector with the list of SimTrack ID's of the tracks that contributed to the RecHit
00489           //write the id only once in the vector
00490           
00491           if(find(idcachev.begin(),idcachev.end(),currentId ) == idcachev.end()){
00492             /*
00493               std::cout << " Adding track id  = " << currentId.first  
00494               << " Event id = " << currentId.second.event() 
00495               << " Bunch Xing = " << currentId.second.bunchCrossing() 
00496               << std::endl;
00497             */
00498             idcachev.push_back(currentId);
00499             simtrackid.push_back(currentId);
00500           }
00501           
00502           //create a vector that contains all the position (in the MixCollection) of the SimHits that contributed to the RecHit
00503           //write position only once
00504           int currentCFPos = linkiter->CFposition()-1;
00505           if(find(CFposcachev.begin(),CFposcachev.end(),currentCFPos ) == CFposcachev.end()){
00506             /*
00507               std::cout << "CHECKING CHANNEL  = " << linkiter->channel()   << std::endl;
00508               std::cout << "\tTrackID  = " << linkiter->SimTrackId()  << "\tCFPos = " << currentCFPos  << std::endl;
00509               std::cout << "\tLocal Pos = " << TrackerHits.getObject(currentCFPos).localPosition() 
00510               << "\tProcess = " << TrackerHits.getObject(currentCFPos).processType() << std::endl;
00511             */
00512             CFposcachev.push_back(currentCFPos);
00513             simhitCFPos.push_back(currentCFPos);
00514             //    simhitassoc.push_back( TrackerHits.getObject(currentCFPos));
00515           }
00516         }
00517       }    
00518     }
00519     else {
00520       edm::LogError("TrackerHitAssociator")<<"no cluster reference attached";
00521     }
00522   }
00523 }
00524 
00525 std::vector<SimHitIdpr>  TrackerHitAssociator::associateMatchedRecHit(const SiStripMatchedRecHit2D * matchedrechit)
00526 {
00527 
00528   StripHits = true;
00529 
00530 
00531   vector<SimHitIdpr> matched_mono;
00532   vector<SimHitIdpr> matched_st;
00533   matched_mono.clear();
00534   matched_st.clear();
00535 
00536   const SiStripRecHit2D mono = matchedrechit->monoHit();
00537   const SiStripRecHit2D st = matchedrechit->stereoHit();
00538   //associate the two simple hits separately
00539   associateSimpleRecHit(&mono,matched_mono );
00540   associateSimpleRecHit(&st, matched_st );
00541   
00542   //save in a vector all the simtrack-id's that are common to mono and stereo hits
00543   if(!matched_mono.empty() && !matched_st.empty()){
00544     simtrackid.clear(); //final result vector
00545     //    std::vector<unsigned int> idcachev;
00546     std::vector<SimHitIdpr> idcachev;
00547     //for(vector<unsigned int>::iterator mhit=matched_mono.begin(); mhit != matched_mono.end(); mhit++){
00548     for(vector<SimHitIdpr>::iterator mhit=matched_mono.begin(); mhit != matched_mono.end(); mhit++){
00549       //save only once the ID
00550       if(find(idcachev.begin(), idcachev.end(),(*mhit)) == idcachev.end()) {
00551         idcachev.push_back(*mhit);
00552         //save if the stereoID matched the monoID
00553         if(find(matched_st.begin(), matched_st.end(),(*mhit))!=matched_st.end()){
00554           simtrackid.push_back(*mhit);
00555           //std::cout << "matched case: saved ID " << (*mhit) << std::endl; 
00556         }
00557       }
00558     }
00559   }
00560   return simtrackid;
00561 }
00562 
00563 
00564 std::vector<SimHitIdpr>  TrackerHitAssociator::associateProjectedRecHit(const ProjectedSiStripRecHit2D * projectedrechit)
00565 {
00566   StripHits = true;
00567 
00568 
00569   //projectedRecHit is a "matched" rechit with only one component
00570 
00571   vector<SimHitIdpr> matched_mono;
00572   matched_mono.clear();
00573  
00574   const SiStripRecHit2D mono = projectedrechit->originalHit();
00575   associateSimpleRecHit(&mono, matched_mono);
00576   return matched_mono;
00577 }
00578 
00579 //std::vector<unsigned int>  TrackerHitAssociator::associatePixelRecHit(const SiPixelRecHit * pixelrechit)
00580 void  TrackerHitAssociator::associatePixelRecHit(const SiPixelRecHit * pixelrechit, std::vector<SimHitIdpr> & simtrackid)
00581 {
00582   StripHits = false;
00583 
00584   //
00585   // Pixel associator
00586   //
00587   DetId detid=  pixelrechit->geographicalId();
00588   uint32_t detID = detid.rawId();
00589 
00590   edm::DetSetVector<PixelDigiSimLink>::const_iterator isearch = pixeldigisimlink->find(detID); 
00591   if(isearch != pixeldigisimlink->end()) {  //if it is not empty
00592     //    edm::DetSet<PixelDigiSimLink> link_detset = (*pixeldigisimlink)[detID];
00593     edm::DetSet<PixelDigiSimLink> link_detset = (*isearch);
00594     //    edm::Ref< edm::DetSetVector<SiPixelCluster>, SiPixelCluster> const& cluster = pixelrechit->cluster();
00595     SiPixelRecHit::ClusterRef const& cluster = pixelrechit->cluster();
00596     
00597     //check the reference is valid
00598     
00599     if(!(cluster.isNull())){//if the cluster is valid
00600       
00601       int minPixelRow = (*cluster).minPixelRow();
00602       int maxPixelRow = (*cluster).maxPixelRow();
00603       int minPixelCol = (*cluster).minPixelCol();
00604       int maxPixelCol = (*cluster).maxPixelCol();    
00605       //std::cout << "    Cluster minRow " << minPixelRow << " maxRow " << maxPixelRow << std::endl;
00606       //std::cout << "    Cluster minCol " << minPixelCol << " maxCol " << maxPixelCol << std::endl;
00607       edm::DetSet<PixelDigiSimLink>::const_iterator linkiter = link_detset.data.begin();
00608       int dsl = 0;
00609       //    std::vector<unsigned int> idcachev;
00610       std::vector<SimHitIdpr> idcachev;
00611       for( ; linkiter != link_detset.data.end(); linkiter++) {
00612         dsl++;
00613         std::pair<int,int> pixel_coord = PixelDigi::channelToPixel(linkiter->channel());
00614         //std::cout << "    " << dsl << ") Digi link: row " << pixel_coord.first << " col " << pixel_coord.second << std::endl;      
00615         if(  pixel_coord.first  <= maxPixelRow && 
00616              pixel_coord.first  >= minPixelRow &&
00617              pixel_coord.second <= maxPixelCol &&
00618              pixel_coord.second >= minPixelCol ) {
00619           //std::cout << "      !-> trackid   " << linkiter->SimTrackId() << endl;
00620           //std::cout << "          fraction  " << linkiter->fraction()   << endl;
00621           SimHitIdpr currentId(linkiter->SimTrackId(), linkiter->eventId());
00622           //    if(find(idcachev.begin(),idcachev.end(),linkiter->SimTrackId()) == idcachev.end()){
00623           if(find(idcachev.begin(),idcachev.end(),currentId) == idcachev.end()){
00624             //    simtrackid.push_back(linkiter->SimTrackId());
00625             //idcachev.push_back(linkiter->SimTrackId());
00626             simtrackid.push_back(currentId);
00627             idcachev.push_back(currentId);
00628           }
00629         } 
00630       }
00631     }
00632     else{      
00633       edm::LogError("TrackerHitAssociator")<<"no Pixel cluster reference attached";
00634       
00635     }
00636   }
00637   
00638 
00639 }
00640 
00641 std::vector<SimHitIdpr>  TrackerHitAssociator::associateGSRecHit(const SiTrackerGSRecHit2D * gsrechit)
00642 {
00643   StripHits = false;
00644   //GSRecHit is the FastSimulation RecHit that contains the TrackId already
00645 
00646   vector<SimHitIdpr> simtrackid;
00647   simtrackid.clear();
00648   SimHitIdpr currentId(gsrechit->simtrackId(), EncodedEventId(gsrechit->eeId()));
00649   simtrackid.push_back(currentId);
00650   return simtrackid;
00651 }
00652 
00653 std::vector<PSimHit> TrackerHitAssociator::associateMultiRecHit(const SiTrackerMultiRecHit * multirechit){
00654   std::vector<const TrackingRecHit*> componenthits = multirechit->recHits();
00655   //        std::vector<PSimHit> assimhits;
00656   int size=multirechit->weights().size(), idmostprobable=0;
00657   
00658   for (int i=0; i<size; i++){
00659     if(multirechit->weight(i)>multirechit->weight(idmostprobable)) idmostprobable=i;
00660   }
00661   
00662   //    std::vector<PSimHit> assimhits = associateHit(**mostpropable);
00663   //    assimhits.insert(assimhits.end(), asstocurrent.begin(), asstocurrent.end());
00664   //std::cout << "Returning " << assimhits.size() << " simhits" << std::endl;
00665   return associateHit(*componenthits[idmostprobable]);
00666 }
00667 
00668 std::vector<SimHitIdpr> TrackerHitAssociator::associateMultiRecHitId(const SiTrackerMultiRecHit * multirechit){
00669   std::vector<const TrackingRecHit*> componenthits = multirechit->recHits();
00670   int size=multirechit->weights().size(), idmostprobable=0;
00671   
00672   for (int i=0; i<size; i++){
00673     if(multirechit->weight(i)>multirechit->weight(idmostprobable)) idmostprobable=i;
00674   }
00675   
00676   return associateHitId(*componenthits[idmostprobable]);
00677 }
00678 
00679 std::vector<SimHitIdpr>  TrackerHitAssociator::associateGSMatchedRecHit(const SiTrackerGSMatchedRecHit2D * gsmrechit)
00680 {
00681   StripHits = false;
00682   //GSRecHit is the FastSimulation RecHit that contains the TrackId already
00683   
00684   vector<SimHitIdpr> simtrackid;
00685   simtrackid.clear();
00686   SimHitIdpr currentId(gsmrechit->simtrackId(), EncodedEventId(gsmrechit->eeId()));
00687   simtrackid.push_back(currentId);
00688   return simtrackid;
00689 }
00690