CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/RecoTracker/MeasurementDet/src/OnDemandMeasurementTracker.cc

Go to the documentation of this file.
00001 #include "RecoTracker/MeasurementDet/interface/OnDemandMeasurementTracker.h"
00002 
00003 #include "FWCore/Framework/interface/ESHandle.h"
00004 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00005 
00006 #include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
00007 #include "Geometry/CommonDetUnit/interface/GeomDet.h"
00008 #include "Geometry/CommonDetUnit/interface/GeomDetUnit.h"
00009 #include "Geometry/TrackerGeometryBuilder/interface/GluedGeomDet.h"
00010 #include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
00011 
00012 #include "MagneticField/Records/interface/IdealMagneticFieldRecord.h"
00013 
00014 #include "DataFormats/SiStripDetId/interface/StripSubdetector.h"
00015 #include "DataFormats/SiPixelDetId/interface/PixelSubdetector.h"
00016 #include "DataFormats/SiStripDetId/interface/StripSubdetector.h"
00017 #include "DataFormats/SiStripCluster/interface/SiStripClusterCollection.h"
00018 
00019 #include "TrackingTools/MeasurementDet/interface/MeasurementDetException.h"
00020 
00021 #include "RecoLocalTracker/ClusterParameterEstimator/interface/PixelClusterParameterEstimator.h"
00022 #include "RecoLocalTracker/Records/interface/TrackerCPERecord.h"
00023 #include "RecoLocalTracker/SiStripRecHitConverter/interface/SiStripRecHitMatcher.h"
00024 #include "RecoLocalTracker/SiStripRecHitConverter/interface/StripCPE.h"  
00025 
00026 #include "RecoTracker/TkDetLayers/interface/GeometricSearchTracker.h"
00027 #include "RecoTracker/Record/interface/TrackerRecoGeometryRecord.h"
00028 #include "RecoTracker/MeasurementDet/interface/TkStripMeasurementDet.h"
00029 #include "RecoTracker/MeasurementDet/interface/TkPixelMeasurementDet.h"
00030 #include "RecoTracker/MeasurementDet/interface/TkGluedMeasurementDet.h"
00031 
00032 #include "CondFormats/SiStripObjects/interface/SiStripNoises.h"
00033 #include "CondFormats/DataRecord/interface/SiStripNoisesRcd.h"
00034 
00035 #include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
00036 #include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
00037 #include "CalibFormats/SiStripObjects/interface/SiStripDetCabling.h"
00038 #include "CalibTracker/Records/interface/SiStripDetCablingRcd.h"
00039 #include "CalibTracker/Records/interface/SiStripRegionCablingRcd.h"
00040 
00041 #include <iostream>
00042 #include <typeinfo>
00043 #include <map>
00044 
00045 #include <DataFormats/GeometrySurface/interface/BoundPlane.h>
00046 #include "DataFormats/Math/interface/deltaR.h"
00047 
00048 #include "FWCore/ServiceRegistry/interface/Service.h"
00049 #include "FWCore/Services/interface/UpdaterService.h"
00050 
00051 using namespace std;
00052 
00053 OnDemandMeasurementTracker::OnDemandMeasurementTracker(const edm::ParameterSet&              conf,
00054                                                        const PixelClusterParameterEstimator* pixelCPE,
00055                                                        const StripClusterParameterEstimator* stripCPE,
00056                                                        const SiStripRecHitMatcher*  hitMatcher,
00057                                                        const TrackerGeometry*  trackerGeom,
00058                                                        const GeometricSearchTracker* geometricSearchTracker,
00059                                                        const SiStripQuality *stripQuality,
00060                                                        int   stripQualityFlags,
00061                                                        int   stripQualityDebugFlags,
00062                                                        const SiPixelQuality *pixelQuality,
00063                                                        const SiPixelFedCabling *pixelCabling,
00064                                                        int   pixelQualityFlags,
00065                                                        int   pixelQualityDebugFlags,
00066                                                        const SiStripRegionCabling * stripRegionCabling,
00067                                                        bool isRegional):
00068   MeasurementTracker(conf,pixelCPE,stripCPE,hitMatcher,trackerGeom,geometricSearchTracker,
00069         stripQuality,stripQualityFlags,stripQualityDebugFlags,
00070         pixelQuality,pixelCabling,pixelQualityFlags,pixelQualityDebugFlags,
00071         isRegional)
00072   , category_("OnDemandMeasurementTracker")
00073   , StayPacked_(true)
00074   , StripOnDemand_(true)
00075   , PixelOnDemand_(false)
00076   , theStripRegionCabling(stripRegionCabling)
00077 {
00078   //  the constructor does construct the regular MeasurementTracker
00079   //  then a smart copy of the DetMap is made into DetODMap: this could be avoided with modification to MeasurementDet interface
00080   //  the elementIndex to be defined in the refgetter is mapped to the detId
00081   //  flags are set to initialize the DetODMap
00082 
00083   for (DetContainer::iterator it=theDetMap.begin(); it!= theDetMap.end();++it)
00084     {
00085       DetODContainer::iterator inserted = theDetODMap.insert(make_pair(it->first,DetODStatus(const_cast<MeasurementDet*>(it->second)))).first;
00086 
00087 
00088       GeomDet::SubDetector subdet = it->second->geomDet().subDetector();
00089       if (subdet == GeomDetEnumerators::PixelBarrel  || subdet == GeomDetEnumerators::PixelEndcap ){
00090         //special flag treatement for pixels
00091         //one can never be updated and not defined. except if we don't need to care about them: pixels
00092         inserted->second.defined=false;
00093         inserted->second.updated=true;
00094       }//pixel module
00095       else if (subdet == GeomDetEnumerators::TIB || subdet == GeomDetEnumerators::TOB ||
00096           subdet == GeomDetEnumerators::TID || subdet == GeomDetEnumerators::TEC )
00097         {
00098           //set flag to false
00099           inserted->second.defined=false;
00100           inserted->second.updated=false;
00101 
00102           //what will be the element index in the refgetter
00103           GlobalPoint center = it->second->geomDet().position();
00104           double eta = center.eta();
00105           double phi = center.phi();
00106           uint32_t id = it->first.rawId();
00107           SiStripRegionCabling::ElementIndex eIndex = theStripRegionCabling->elementIndex(SiStripRegionCabling::Position(eta,phi),
00108                                                                                           SiStripRegionCabling::subdetFromDetId(id),
00109                                                                                           SiStripRegionCabling::layerFromDetId(id));
00110           LogDebug(category_)<<"region selected (from "<<id<<" center) is:\n"
00111                              <<"position: "<<center
00112                              <<"\n center absolute index: "<<theStripRegionCabling->region(theStripRegionCabling->positionIndex(SiStripRegionCabling::Position(eta,phi)))
00113                              <<"\n center position index: "<<theStripRegionCabling->positionIndex(SiStripRegionCabling::Position(eta,phi)).first<<
00114             " "<<theStripRegionCabling->positionIndex(SiStripRegionCabling::Position(eta,phi)).second
00115                              <<"\n center postion: "<<theStripRegionCabling->position(theStripRegionCabling->positionIndex(SiStripRegionCabling::Position(eta,phi))).first<<
00116             " "<<theStripRegionCabling->position(theStripRegionCabling->positionIndex(SiStripRegionCabling::Position(eta,phi))).second
00117                              <<"\n eta: "<<eta
00118                              <<"\n phi: "<<phi
00119                              <<"\n subedet: "<<SiStripRegionCabling::subdetFromDetId(id)
00120                              <<" layer: "<<SiStripRegionCabling::layerFromDetId(id);
00121 
00122           //      register those in a map
00123           //to be able to know what are the detid in a given elementIndex
00124           region_mapping[eIndex].push_back(inserted);
00125         }//strip module
00126       else{
00127         //abort
00128         edm::LogError(category_)<<"not a tracker geomdet in constructor: "<<it->first.rawId();
00129         throw MeasurementDetException("OnDemandMeasurementTracker dealing with a non tracker GeomDet.");
00130       }//abort
00131     }//loop over DetMap
00132 }
00133 
00134 
00135 void OnDemandMeasurementTracker::define( const edm::Handle< LazyGetter> & theLazyGetterH,
00136                                          std::auto_ptr< RefGetter > &  theGetter ) const
00137 {
00138   //  define is supposed to be call by an EDProducer module, which wil put the RefGetter in the event
00139   //  so that reference can be made to it.
00140   //  the lazy getter is retrieved by the calling module and passed along with the event
00141   //  the map is cleared, except for pixel
00142   //  then the known elementIndex are defined to the RefGetter. no unpacking is done at this time
00143   //  the defined region range is registered in the DetODMap for further use.
00144 
00145   //clear all defined tags to start from scratch (except for pixel)
00146   for (DetODContainer::iterator it=theDetODMap.begin(); it!= theDetODMap.end();++it)
00147     {
00148       if (it->second.updated && !it->second.defined) continue; //special treatement for pixels
00149       it->second.defined= false; 
00150       it->second.updated = false;
00151     }
00152 
00153   //define all the elementindex in the refgetter
00154   for( std::map<SiStripRegionCabling::ElementIndex, std::vector<DetODContainer::iterator> >::iterator eIt= region_mapping.begin();
00155        eIt!=region_mapping.end();++eIt){
00156     std::pair<unsigned int, unsigned int> region_range; 
00157     
00158     //before update of the refgetter
00159     region_range.first = theGetter->size();
00160     //update the refegetter with the elementindex
00161     theStripRegionCabling->updateSiStripRefGetter<SiStripCluster> (*theGetter, theLazyGetterH, eIt->first);
00162     //after update of the refgetter
00163     region_range.second = theGetter->size();
00164 
00165     LogDebug(category_)<<"between index: "<<region_range.first<<" "<<region_range.second
00166                        <<"\n"<<dumpRegion(region_range,*theGetter,StayPacked_);
00167     
00168     //now assign to each measurement det for that element index
00169     for (std::vector<DetODContainer::iterator>::iterator dIt=eIt->second.begin();
00170          dIt!=eIt->second.end();++dIt){
00171       (*dIt)->second.region_range = region_range;
00172       (*dIt)->second.defined=true;
00173       LogDebug(category_)<<"detId: "<<(*dIt)->first.rawId()<<" in region range: "<<region_range.first<<" "<<region_range.second;
00174     }//loop over MeasurementDet attached to that elementIndex
00175   }//loop over know elementindex
00176 }
00177 
00178 void OnDemandMeasurementTracker::updateStrips( const edm::Event& event) const 
00179 {
00180   bool oncePerEvent= edm::Service<UpdaterService>()->checkOnce("OnDemandMeasurementTracker::updateStrips::"+name_);
00181   bool failedToGet = false;
00182   if (!oncePerEvent)
00183     failedToGet = theRefGetterH.failedToGet() || theLazyGetterH.failedToGet();
00184 
00185   if (oncePerEvent || failedToGet)
00186     {
00187       LogDebug(category_)<<"Updating siStrip on event: "<< (unsigned int) event.id().run() <<" : "<<(unsigned int) event.id().event();
00188       
00189       //get the ref getter back from the event
00190       std::string stripClusterProducer = pset_.getParameter<std::string>("stripClusterProducer");
00191       event.getByLabel(stripClusterProducer,theRefGetterH);
00192       
00193       std::string stripLazyGetter = pset_.getParameter<std::string>("stripLazyGetterProducer");
00194       event.getByLabel(stripLazyGetter,theLazyGetterH);
00195     }
00196 }
00197 
00198 void OnDemandMeasurementTracker::update( const edm::Event& event) const
00199 {
00200   //  update is supposed to be called by any module that is useing the MeasurementTracker
00201   //  after checking the the event has not yet been seen
00202   //  update the pixel using MeasurementTracekr specific function
00203   //  retreive the RefGetter from the event: the very one that has been pass to define(...) and put into the event
00204 
00205   if (!PixelOnDemand_) {
00206     LogDebug(category_)<<"pixel are not OnDemand. updating them a la MeasurmentTracker.";
00207     MeasurementTracker::updatePixels(event);}
00208   else{
00209     edm::LogError(category_)<<"trying to update siPixel as on-demand. Not Implemented yet.";
00210   }
00211 
00212   if (!StripOnDemand_) {
00213     LogDebug(category_)<<"strip are not OnDemand. updating them a la MeasurmentTracker.";
00214     MeasurementTracker::updateStrips(event);}
00215   else{
00216     LogDebug(category_)<<"strip are OnDemand. updating them a la OnDemandMeasurmentTracker."; 
00217     updateStrips(event);
00218   }
00219 }
00220 
00221 #include <sstream>
00222 
00223 std::string OnDemandMeasurementTracker::dumpCluster(const std::vector<SiStripCluster> ::const_iterator & begin,const  std::vector<SiStripCluster> ::const_iterator & end)const
00224 {
00225   //  dumpCluster is a printout of all the clusters between the iterator. returns a string
00226   std::string tab="      ";
00227   std::stringstream ss;
00228   std::vector<SiStripCluster> ::const_iterator it = begin;
00229   unsigned int i=0;
00230   for (;it!=end;++it){
00231     ss<<tab<<i++<<") center: "<<it->barycenter()<<",id: "<<it->geographicalId()<<" with: "<<it->amplitudes().size()<<" strips\n"<<tab<<tab<<"{";
00232     for (unsigned int is=0;is!=it->amplitudes().size();++is){
00233       ss<<it->amplitudes()[is]<<" ";
00234     }ss<<"}\n";
00235   }
00236   return ss.str();
00237 }
00238 
00239 std::string OnDemandMeasurementTracker::dumpRegion(std::pair<unsigned int,unsigned int> indexes,
00240                                              const RefGetter & theGetter,
00241                                              bool stayPacked)const
00242 {
00243   //  dumpRegion is a printout of all the clusters in a region defined on the RefGetter. returns a string
00244   std::stringstream ss;
00245   ss<<"cluster between: "<<indexes.first<<" and: "<<indexes.second<<"\n";
00246   for (unsigned int iRegion = indexes.first; iRegion != indexes.second; ++iRegion){    
00247     uint32_t reg = SiStripRegionCabling::region((theGetter)[iRegion].region());
00248     SiStripRegionCabling::Position pos = theStripRegionCabling->position(reg);
00249     SiStripRegionCabling::PositionIndex posI = theStripRegionCabling->positionIndex(reg);
00250     
00251     ss<<"Clusters for region:["<<iRegion<<"]"
00252       <<"\n element index: "<<(theGetter)[iRegion].region()
00253       <<"\n region absolute index: "<<reg
00254       <<"\n region position index: "<<posI.first<<" "<<posI.second
00255       <<"\n region position: "<<pos.first<<" "<<pos.second
00256       <<"\n"<< (stayPacked? " hidden to avoid unpacking." : dumpCluster((theGetter)[iRegion].begin(),(theGetter)[iRegion].end()));
00257   }
00258   return ss.str();
00259 }
00260 
00261 void OnDemandMeasurementTracker::assign(const TkStripMeasurementDet * csmdet,
00262                                   DetODContainer::iterator * alreadyFound)const {
00263   //  assign is using the handle to the refgetter and the region index range to update the MeasurementDet with their clusters
00264   
00265   TkStripMeasurementDet * smdet = const_cast<TkStripMeasurementDet *>(csmdet);
00266   DetId id = smdet->geomDet().geographicalId();
00267   
00268   LogDebug(category_)<<"assigning: "<<id.rawId();
00269 
00270   // what is the iterator. do not look again if already found and provided with
00271   DetODContainer::iterator elementInMap;
00272   if (alreadyFound){ elementInMap=*alreadyFound;}
00273   else{ elementInMap = theDetODMap.find(id);}
00274   
00275   if  ( elementInMap != theDetODMap.end()){
00276     //flag it as updated
00277     elementInMap->second.updated = true;
00278     //retrieve the region range index for this module
00279     std::pair<unsigned int,unsigned int> & indexes =elementInMap->second.region_range;
00280 
00281     //this printout will trigger unpacking. no problem. it is done on the next regular line (find(id.rawId())
00282     LogDebug(category_)<<"between index: "<<indexes.first<<" and: "<<indexes.second
00283                        <<"\nretrieved for module: "<<id.rawId()
00284                        <<"\n"<<dumpRegion(indexes,*theRefGetterH);
00285     
00286     //look for iterator range in the regions defined for that module
00287     for (unsigned int iRegion = indexes.first; iRegion != indexes.second; ++iRegion){
00288       RefGetter::record_pair range = (*theRefGetterH)[iRegion].find(id.rawId());
00289       if (range.first!=range.second){
00290         //      found something not empty
00291         //update the measurementDet
00292         smdet->update(range.first, range.second, theLazyGetterH, id);
00293         LogDebug(category_)<<"Valid clusters for: "<<id.rawId()
00294                            <<"\nnumber of regions defined here: "<< indexes.second-indexes.first
00295                            <<"\n"<<dumpCluster(range.first,range.second);
00296         //and you are done
00297         return;}
00298     }//loop over regions, between indexes
00299 
00300     //if reached. no cluster are found. set the TkStripMeasurementDet to be empty
00301     smdet->setEmpty();
00302 
00303   }//found in the map
00304   else{
00305     //throw excpetion
00306     edm::LogError(category_)<<"failed to find the MeasurementDet for: "<<id.rawId();
00307     throw MeasurementDetException("failed to find the MeasurementDet for: <see message logger>");
00308   }
00309 }
00310 
00311 
00312 
00313 const MeasurementDet* 
00314 OnDemandMeasurementTracker::idToDet(const DetId& id) const
00315 {
00316   //  overloaded from MeasurementTracker
00317   //  find the detid. if not found throw exception
00318   //  if already updated: always for pixel or strip already queried. return it
00319   DetODContainer::iterator it = theDetODMap.find(id);
00320   if ( it != theDetODMap.end()) {
00321     
00322     //it has already been queried. and so already updated: nothing to be done here (valid for pixels too)
00323     if (it->second.updated){LogDebug(category_)<<"found id: "<<id.rawId()<<" as aleardy updated."; return it->second.mdet;}
00324     
00325     if (StripOnDemand_){
00326       //check glued or single
00327       std::vector< const GeomDet*> comp = it->second.mdet->geomDet().components();
00328       if (!comp.empty()){
00329         //glued det
00330         LogDebug(category_)<<"updating glued id: "<<id.rawId()<<" ("<<comp.size()<<").";
00331         //cast to specific type
00332         TkGluedMeasurementDet*  theConcreteDet = dynamic_cast<TkGluedMeasurementDet*>(it->second.mdet);
00333         //FIXME. do not require the dynamic cast, since we know what we do here
00334         //              const TkGluedMeasurementDet*  theConcreteDet = (const TkGluedMeasurementDet*) it->second.mdet;
00335         if (!theConcreteDet){
00336           edm::LogError(category_)<<"failed to cast to glued measurement det:"<<it->first.rawId();
00337           throw MeasurementDetException("failed to cast. see log file.");}
00338                 
00339         //      update the two components
00340         //update the mono
00341         assign(theConcreteDet->monoDet());
00342         //update the stereo
00343         assign(theConcreteDet->stereoDet());
00344               
00345         //flag the glued det as updated (components are flagged in assign)
00346         it->second.updated=true;
00347       }//glued det
00348       else{
00349         //single layer 
00350         LogDebug(category_)<<"updating singel id: "<<id.rawId();
00351         //cast to specific type
00352         TkStripMeasurementDet*  theConcreteDet = dynamic_cast<TkStripMeasurementDet*>(it->second.mdet);
00353         //FIXME. do not require the dynamic cast, since we know what we do here
00354         //              const TkStripMeasurementDet*  theConcreteDet = (const TkStripMeasurementDet*)it->second.mdet;
00355         if (!theConcreteDet){
00356           edm::LogError(category_)<<"failed to cast to strip measurement det:"<<it->first.rawId();
00357           throw MeasurementDetException("failed to cast. see log file.");}
00358 
00359         //update the single layer
00360         assign(theConcreteDet,&it);
00361       }//single det
00362     }
00363     //eventually return it
00364     return it->second.mdet;
00365   }//found in the DetODMap
00366   else{
00367     //throw excpetion
00368     edm::LogError(category_)<<"failed to find the MeasurementDet for: "<<id.rawId();
00369     throw MeasurementDetException("failed to find the MeasurementDet for: <see message logger>");
00370   }
00371   return 0;
00372 }
00373 
00374