#include <RecoTracker/DeDxEstimatorProducer/src/DeDxEstimatorProducer.cc>
Classes | |
class | isEqual |
struct | stModInfo |
Public Member Functions | |
DeDxEstimatorProducer (const edm::ParameterSet &) | |
~DeDxEstimatorProducer () | |
Private Member Functions | |
virtual void | beginRun (edm::Run &run, const edm::EventSetup &) |
virtual void | endJob () |
int | getCharge (const SiStripCluster *Cluster, int &Saturating_Strips) |
void | MakeCalibrationMap () |
virtual void | produce (edm::Event &, const edm::EventSetup &) |
Private Attributes | |
std::string | m_calibrationPath |
BaseDeDxEstimator * | m_estimator |
edm::InputTag | m_tracksTag |
edm::InputTag | m_trajTrackAssociationTag |
unsigned int | MaxNrStrips |
double | MeVperADCPixel |
double | MeVperADCStrip |
unsigned int | MinTrackHits |
__gnu_cxx::hash_map< unsigned int, stModInfo *, __gnu_cxx::hash< unsigned int >, isEqual > | MODsColl |
bool | useCalibration |
bool | usePixel |
bool | useStrip |
Description: <one line="" class="" summary>="">
Implementation: <Notes on="" implementation>="">
Definition at line 32 of file DeDxEstimatorProducer.h.
DeDxEstimatorProducer::DeDxEstimatorProducer | ( | const edm::ParameterSet & | iConfig | ) | [explicit] |
Definition at line 51 of file DeDxEstimatorProducer.cc.
References edm::ParameterSet::getParameter(), and edm::ParameterSet::getUntrackedParameter().
{ produces<ValueMap<DeDxData> >(); string estimatorName = iConfig.getParameter<string>("estimator"); if(estimatorName == "median") m_estimator = new MedianDeDxEstimator(-2.); if(estimatorName == "generic") m_estimator = new GenericAverageDeDxEstimator (iConfig.getParameter<double>("exponent")); if(estimatorName == "truncated") m_estimator = new TruncatedAverageDeDxEstimator(iConfig.getParameter<double>("fraction")); if(estimatorName == "unbinnedFit") m_estimator = new UnbinnedFitDeDxEstimator(); MaxNrStrips = iConfig.getUntrackedParameter<unsigned>("maxNrStrips" , 255); MinTrackHits = iConfig.getUntrackedParameter<unsigned>("MinTrackHits" , 4); m_tracksTag = iConfig.getParameter<edm::InputTag>("tracks"); m_trajTrackAssociationTag = iConfig.getParameter<edm::InputTag>("trajectoryTrackAssociation"); usePixel = iConfig.getParameter<bool>("UsePixel"); useStrip = iConfig.getParameter<bool>("UseStrip"); MeVperADCPixel = iConfig.getParameter<double>("MeVperADCPixel"); MeVperADCStrip = iConfig.getParameter<double>("MeVperADCStrip"); useCalibration = iConfig.getParameter<bool>("UseCalibration"); m_calibrationPath = iConfig.getParameter<string>("calibrationPath"); if(!usePixel && !useStrip) edm::LogWarning("DeDxHitsProducer") << "Pixel Hits AND Strip Hits will not be used to estimate dEdx --> BUG, Please Update the config file"; }
DeDxEstimatorProducer::~DeDxEstimatorProducer | ( | ) |
Definition at line 82 of file DeDxEstimatorProducer.cc.
{ delete m_estimator; }
void DeDxEstimatorProducer::beginRun | ( | edm::Run & | run, |
const edm::EventSetup & | iSetup | ||
) | [private, virtual] |
Reimplemented from edm::EDProducer.
Definition at line 90 of file DeDxEstimatorProducer.cc.
References BoundSurface::bounds(), DeDxEstimatorProducer::stModInfo::DetId, DeDxEstimatorProducer::stModInfo::Distance, DeDxEstimatorProducer::stModInfo::Gain, edm::EventSetup::get(), i, PV3DBase< T, PVType, FrameType >::mag(), DeDxEstimatorProducer::stModInfo::Normalization, GeomDet::position(), DetId::rawId(), GeomDet::surface(), DeDxEstimatorProducer::stModInfo::Thickness, and Bounds::thickness().
{ if(MODsColl.size()!=0)return; edm::ESHandle<TrackerGeometry> tkGeom; iSetup.get<TrackerDigiGeometryRecord>().get( tkGeom ); vector<GeomDet*> Det = tkGeom->dets(); for(unsigned int i=0;i<Det.size();i++){ DetId Detid = Det[i]->geographicalId(); StripGeomDetUnit* StripDetUnit = dynamic_cast<StripGeomDetUnit*> (Det[i]); PixelGeomDetUnit* PixelDetUnit = dynamic_cast<PixelGeomDetUnit*> (Det[i]); double Thick=-1, Dist=-1, Norma=-1; if(StripDetUnit){ Dist = StripDetUnit->position().mag(); Thick = StripDetUnit->surface().bounds().thickness(); Norma = MeVperADCStrip/Thick; }else if(PixelDetUnit){ Dist = PixelDetUnit->position().mag(); Thick = PixelDetUnit->surface().bounds().thickness(); Norma = MeVperADCPixel/Thick; } stModInfo* MOD = new stModInfo; MOD->DetId = Detid.rawId(); MOD->Thickness = Thick; MOD->Distance = Dist; MOD->Normalization = Norma; MOD->Gain = 1; MODsColl[MOD->DetId] = MOD; } MakeCalibrationMap(); }
void DeDxEstimatorProducer::endJob | ( | void | ) | [private, virtual] |
Reimplemented from edm::EDProducer.
Definition at line 129 of file DeDxEstimatorProducer.cc.
{ MODsColl.clear(); }
int DeDxEstimatorProducer::getCharge | ( | const SiStripCluster * | Cluster, |
int & | Saturating_Strips | ||
) | [private] |
Definition at line 288 of file DeDxEstimatorProducer.cc.
References SiStripCluster::amplitudes(), DeDxEstimatorProducer::stModInfo::Gain, SiStripCluster::geographicalId(), and i.
{ const vector<uint8_t>& Ampls = Cluster->amplitudes(); uint32_t DetId = Cluster->geographicalId(); // float G=1.0f; int toReturn = 0; Saturating_Strips = 0; for(unsigned int i=0;i<Ampls.size();i++){ int CalibratedCharge = Ampls[i]; if(useCalibration){ stModInfo* MOD = MODsColl[DetId]; // G = MOD->Gain; CalibratedCharge = (int)(CalibratedCharge / MOD->Gain ); if(CalibratedCharge>=1024){ CalibratedCharge = 255; }else if(CalibratedCharge>=255){ CalibratedCharge = 254; } } toReturn+=CalibratedCharge; if(CalibratedCharge>=254)Saturating_Strips++; } // printf("Charge = %i --> %i (Gain=%f)\n", accumulate(Ampls.begin(), Ampls.end(), 0), toReturn, G); return toReturn; }
void DeDxEstimatorProducer::MakeCalibrationMap | ( | ) | [private] |
Definition at line 260 of file DeDxEstimatorProducer.cc.
References DeDxEstimatorProducer::stModInfo::Gain.
{ if(!useCalibration)return; TChain* t1 = new TChain("SiStripCalib/APVGain"); t1->Add(m_calibrationPath.c_str()); unsigned int tree_DetId; unsigned char tree_APVId; double tree_Gain; t1->SetBranchAddress("DetId" ,&tree_DetId ); t1->SetBranchAddress("APVId" ,&tree_APVId ); t1->SetBranchAddress("Gain" ,&tree_Gain ); for (unsigned int ientry = 0; ientry < t1->GetEntries(); ientry++) { t1->GetEntry(ientry); stModInfo* MOD = MODsColl[tree_DetId]; MOD->Gain = tree_Gain; } delete t1; }
void DeDxEstimatorProducer::produce | ( | edm::Event & | iEvent, |
const edm::EventSetup & | iSetup | ||
) | [private, virtual] |
Implements edm::EDProducer.
Definition at line 136 of file DeDxEstimatorProducer.cc.
References abs, DeDxTools::RawHits::angleCosine, edm::AssociationMap< Tag >::begin(), DeDxTools::RawHits::charge, DeDxDiscriminatorTools::charge(), SiStripRecHit2D::cluster(), DeDxTools::RawHits::detId, DeDxEstimatorProducer::stModInfo::Distance, edm::AssociationMap< Tag >::end(), edm::helper::Filler< Map >::fill(), TrackingRecHit::geographicalId(), edm::Event::getByLabel(), i, edm::helper::Filler< Map >::insert(), TrajectoryStateOnSurface::isValid(), j, edm::Ref< C, T, F >::key(), TrajectoryStateOnSurface::localDirection(), PV3DBase< T, PVType, FrameType >::mag(), n, DeDxEstimatorProducer::stModInfo::Normalization, DeDxTools::RawHits::NSaturating, edm::Handle< T >::product(), edm::Event::put(), edm::AssociationMap< Tag >::size(), python::multivaluedict::sort(), DeDxEstimatorProducer::stModInfo::Thickness, ExpressReco_HICollisions_FallBack::track, DeDxTools::RawHits::trajectoryMeasurement, and PV3DBase< T, PVType, FrameType >::z().
{ auto_ptr<ValueMap<DeDxData> > trackDeDxEstimateAssociation(new ValueMap<DeDxData> ); ValueMap<DeDxData>::Filler filler(*trackDeDxEstimateAssociation); Handle<TrajTrackAssociationCollection> trajTrackAssociationHandle; iEvent.getByLabel(m_trajTrackAssociationTag, trajTrackAssociationHandle); const TrajTrackAssociationCollection TrajToTrackMap = *trajTrackAssociationHandle.product(); edm::Handle<reco::TrackCollection> trackCollectionHandle; iEvent.getByLabel(m_tracksTag,trackCollectionHandle); size_t n = TrajToTrackMap.size(); std::vector<DeDxData> dedxEstimate(n); //assume trajectory collection size is equal to track collection size and that order is kept int j=0; for(TrajTrackAssociationCollection::const_iterator cit=TrajToTrackMap.begin(); cit!=TrajToTrackMap.end(); cit++,j++){ const edm::Ref<std::vector<Trajectory> > traj = cit->key; const reco::TrackRef track = cit->val; DeDxHitCollection dedxHits; vector<DeDxTools::RawHits> hits; // DeDxTools::trajectoryRawHits(traj, hits, usePixel, useStrip); const vector<TrajectoryMeasurement> & measurements = traj->measurements(); for(vector<TrajectoryMeasurement>::const_iterator it = measurements.begin(); it!=measurements.end(); it++){ TrajectoryStateOnSurface trajState=it->updatedState(); if( !trajState.isValid()) continue; const TrackingRecHit * recHit=(*it->recHit()).hit(); LocalVector trackDirection = trajState.localDirection(); double cosine = trackDirection.z()/trackDirection.mag(); if(const SiStripMatchedRecHit2D* matchedHit=dynamic_cast<const SiStripMatchedRecHit2D*>(recHit)){ if(!useStrip) continue; DeDxTools::RawHits mono,stereo; mono.trajectoryMeasurement = &(*it); stereo.trajectoryMeasurement = &(*it); mono.angleCosine = cosine; stereo.angleCosine = cosine; mono.charge = getCharge((matchedHit->monoHit()->cluster()).get(),mono.NSaturating); stereo.charge = getCharge((matchedHit->stereoHit()->cluster()).get(),stereo.NSaturating); mono.detId= matchedHit->monoHit()->geographicalId(); stereo.detId= matchedHit->stereoHit()->geographicalId(); hits.push_back(mono); hits.push_back(stereo); }else if(const ProjectedSiStripRecHit2D* projectedHit=dynamic_cast<const ProjectedSiStripRecHit2D*>(recHit)) { if(!useStrip) continue; const SiStripRecHit2D* singleHit=&(projectedHit->originalHit()); DeDxTools::RawHits mono; mono.trajectoryMeasurement = &(*it); mono.angleCosine = cosine; mono.charge = getCharge((singleHit->cluster()).get(),mono.NSaturating); mono.detId= singleHit->geographicalId(); hits.push_back(mono); }else if(const SiStripRecHit2D* singleHit=dynamic_cast<const SiStripRecHit2D*>(recHit)){ if(!useStrip) continue; DeDxTools::RawHits mono; mono.trajectoryMeasurement = &(*it); mono.angleCosine = cosine; mono.charge = getCharge((singleHit->cluster()).get(),mono.NSaturating); mono.detId= singleHit->geographicalId(); hits.push_back(mono); }else if(const SiStripRecHit1D* single1DHit=dynamic_cast<const SiStripRecHit1D*>(recHit)){ if(!useStrip) continue; DeDxTools::RawHits mono; mono.trajectoryMeasurement = &(*it); mono.angleCosine = cosine; mono.charge = getCharge((single1DHit->cluster()).get(),mono.NSaturating); mono.detId= single1DHit->geographicalId(); hits.push_back(mono); }else if(const SiPixelRecHit* pixelHit=dynamic_cast<const SiPixelRecHit*>(recHit)){ if(!usePixel) continue; DeDxTools::RawHits pixel; pixel.trajectoryMeasurement = &(*it); pixel.angleCosine = cosine; pixel.charge = pixelHit->cluster()->charge(); pixel.NSaturating=-1; pixel.detId= pixelHit->geographicalId(); hits.push_back(pixel); } } int NClusterSaturating = 0; for(size_t i=0; i < hits.size(); i++) { stModInfo* MOD = MODsColl[hits[i].detId]; float pathLen = MOD->Thickness/std::abs(hits[i].angleCosine); float charge = MOD->Normalization*hits[i].charge*std::abs(hits[i].angleCosine); dedxHits.push_back( DeDxHit( charge, MOD->Distance, pathLen, hits[i].detId) ); if(hits[i].NSaturating>0)NClusterSaturating++; } sort(dedxHits.begin(),dedxHits.end(),less<DeDxHit>()); std::pair<float,float> val_and_error = m_estimator->dedx(dedxHits); //WARNING: Since the dEdX Error is not properly computed for the moment //It was decided to store the number of saturating cluster in that dataformat val_and_error.second = NClusterSaturating; dedxEstimate[j] = DeDxData(val_and_error.first, val_and_error.second, dedxHits.size() ); } filler.insert(trackCollectionHandle, dedxEstimate.begin(), dedxEstimate.end()); // really fill the association map filler.fill(); // put into the event iEvent.put(trackDeDxEstimateAssociation); }
std::string DeDxEstimatorProducer::m_calibrationPath [private] |
Definition at line 63 of file DeDxEstimatorProducer.h.
Definition at line 50 of file DeDxEstimatorProducer.h.
Definition at line 53 of file DeDxEstimatorProducer.h.
Definition at line 52 of file DeDxEstimatorProducer.h.
unsigned int DeDxEstimatorProducer::MaxNrStrips [private] |
Definition at line 60 of file DeDxEstimatorProducer.h.
double DeDxEstimatorProducer::MeVperADCPixel [private] |
Definition at line 57 of file DeDxEstimatorProducer.h.
double DeDxEstimatorProducer::MeVperADCStrip [private] |
Definition at line 58 of file DeDxEstimatorProducer.h.
unsigned int DeDxEstimatorProducer::MinTrackHits [private] |
Definition at line 61 of file DeDxEstimatorProducer.h.
__gnu_cxx::hash_map<unsigned int, stModInfo*, __gnu_cxx::hash<unsigned int>, isEqual > DeDxEstimatorProducer::MODsColl [private] |
Definition at line 74 of file DeDxEstimatorProducer.h.
bool DeDxEstimatorProducer::useCalibration [private] |
Definition at line 64 of file DeDxEstimatorProducer.h.
bool DeDxEstimatorProducer::usePixel [private] |
Definition at line 55 of file DeDxEstimatorProducer.h.
bool DeDxEstimatorProducer::useStrip [private] |
Definition at line 56 of file DeDxEstimatorProducer.h.