CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
AlignmentMonitorGeneric.cc
Go to the documentation of this file.
3 
7 #include "TObject.h"
8 
9 #include <TString.h>
10 
12  AlignmentMonitorBase(cfg, "AlignmentMonitorGeneric")
13 {
14 }
15 
17 {
18  std::vector<std::string> residNames; // names of residual histograms
19 
20  residNames.push_back("x hit residuals pos track");
21  residNames.push_back("x hit residuals neg track");
22  residNames.push_back("y hit residuals pos track");
23  residNames.push_back("y hit residuals neg track");
24 
25  const std::vector<Alignable*>& alignables = pStore()->alignables();
26 
27  unsigned int nAlignable = alignables.size();
28  unsigned int nResidName = residNames.size();
29 
30  for (unsigned int i = 0; i < nAlignable; ++i)
31  {
32  const Alignable* ali = alignables[i];
33 
34  Hist1Ds& hists = m_resHists[ali];
35 
36  hists.resize(nResidName, 0);
37 
38  align::ID id = ali->id();
40 
41  for (unsigned int n = 0; n < nResidName; ++n)
42  {
43  const std::string& name = residNames[n];
44 
45  TString histName(name.c_str());
46  histName += Form("_%s_%d", AlignableObjectId::idToString(type), id);
47  histName.ReplaceAll(" ", "");
48 
49  TString histTitle(name.c_str());
50  histTitle += Form(" for %s with ID %d (subdet %d)",
52  id, DetId(id).subdetId());
53 
54  hists[n] = book1D(std::string("/iterN/") + std::string(name) + std::string("/"), std::string(histName), std::string(histTitle), nBin_, -5., 5.);
55  }
56  }
57 
58  m_trkHists.resize(6, 0);
59 
60  m_trkHists[0] = book1D("/iterN/", "pt" , "track p_{t} (GeV)" , nBin_, 0.0,100.0);
61  m_trkHists[1] = book1D("/iterN/", "eta" , "track #eta" , nBin_, - 3.0, 3.0);
62  m_trkHists[2] = book1D("/iterN/", "phi" , "track #phi" , nBin_, -M_PI, M_PI);
63  m_trkHists[3] = book1D("/iterN/", "d0" , "track d0 (cm)" , nBin_, -0.02, 0.02);
64  m_trkHists[4] = book1D("/iterN/", "dz" , "track dz (cm)" , nBin_, -20.0, 20.0);
65  m_trkHists[5] = book1D("/iterN/", "chi2", "track #chi^{2}/dof", nBin_, 0.0, 20.0);
66 
67 }
68 
70  const edm::EventSetup&,
72 {
73  TrajectoryStateCombiner tsoscomb;
74 
75  for (unsigned int t = 0; t < tracks.size(); ++t)
76  {
77  const reco::Track* track = tracks[t].second;
78 
79  float charge = tracks[t].second->charge();
80 
81  const std::vector<TrajectoryMeasurement>& meass
82  = tracks[t].first->measurements();
83 
84  for (unsigned int m = 0; m < meass.size(); ++m)
85  {
86  const TrajectoryMeasurement& meas = meass[m];
87  const TransientTrackingRecHit& hit = *meas.recHit();
88 
89  if ( hit.isValid() )
90  {
91  const Alignable* ali = pNavigator()->alignableFromDetId( hit.geographicalId() );
92 
93  while (ali) {
94  std::map<const Alignable*, Hist1Ds>::iterator h = m_resHists.find(ali);
95  if ( h != m_resHists.end() )
96  {
98 
99  align::LocalVector res = tsos.localPosition() - hit.localPosition();
100  LocalError err1 = tsos.localError().positionError();
101  LocalError err2 = hit.localPositionError(); // CPE+APE
102 
103  // subtract APEs from err2 (if existing) from covariance matrix
104  auto det = static_cast<const TrackerGeomDet*>(hit.det());
105  const auto localAPE = det->localAlignmentError();
106  if (localAPE.valid()) {
107  err2 = LocalError(err2.xx() - localAPE.xx(),
108  err2.xy() - localAPE.xy(),
109  err2.yy() - localAPE.yy());
110  }
111 
112  float errX = std::sqrt( err1.xx() + err2.xx() );
113  float errY = std::sqrt( err1.yy() + err2.yy() );
114 
115  h->second[charge > 0 ? 0 : 1]->Fill(res.x() / errX);
116  h->second[charge > 0 ? 2 : 3]->Fill(res.y() / errY);
117  }
118  ali = ali->mother();
119  }
120  }
121  }
122 
123  m_trkHists[0]->Fill( track->pt() );
124  m_trkHists[1]->Fill( track->eta() );
125  m_trkHists[2]->Fill( track->phi() );
126  m_trkHists[3]->Fill( track->d0() );
127  m_trkHists[4]->Fill( track->dz() );
128  m_trkHists[5]->Fill( track->normalizedChi2() );
129  }
130 }
131 
134 
type
Definition: HCALResponse.h:21
align::ID id() const
Return the ID of Alignable, i.e. DetId of &#39;first&#39; component GeomDet(Unit).
Definition: Alignable.h:185
int i
Definition: DBlmapReader.cc:9
float xx() const
Definition: LocalError.h:24
AlignableNavigator * pNavigator()
AlignmentParameterStore * pStore()
tuple cfg
Definition: looper.py:293
ConstRecHitPointer const & recHit() const
double d0() const
dxy parameter in perigee convention (d0 = -dxy)
Definition: TrackBase.h:592
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
std::map< const Alignable *, Hist1Ds > m_resHists
double normalizedChi2() const
chi-squared divided by n.d.o.f. (or chi-squared * 1e6 if n.d.o.f. is zero)
Definition: TrackBase.h:556
uint32_t ID
Definition: Definitions.h:26
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:640
LocalError positionError() const
std::vector< TH1F * > Hist1Ds
float xy() const
Definition: LocalError.h:25
int iEvent
Definition: GenABIO.cc:230
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:646
float yy() const
Definition: LocalError.h:26
const GeomDet * det() const
T sqrt(T t)
Definition: SSEVec.h:18
double pt() const
track transverse momentum
Definition: TrackBase.h:616
virtual StructureType alignableObjectId() const =0
Return the alignable type identifier.
AlignmentMonitorGeneric(const edm::ParameterSet &)
const LocalTrajectoryError & localError() const
std::vector< ConstTrajTrackPair > ConstTrajTrackPairCollection
TH1F * book1D(std::string dir, std::string name, std::string title, int nchX, double lowX, double highX)
TrajectoryStateOnSurface const & forwardPredictedState() const
Access to forward predicted state (from fitter or builder)
#define M_PI
double dz() const
dz parameter (= dsz/cos(lambda)). This is the track z0 w.r.t (0,0,0) only if the refPoint is close to...
Definition: TrackBase.h:604
virtual void event(const edm::Event &, const edm::EventSetup &, const ConstTrajTrackPairCollection &)
Called for each event (by &quot;run()&quot;): may be reimplemented.
Definition: DetId.h:18
tuple tracks
Definition: testEve_cfg.py:39
virtual LocalError localPositionError() const =0
bool isValid() const
virtual void book()
Book or retrieve histograms; MUST be reimplemented.
#define DEFINE_EDM_PLUGIN(factory, type, name)
DetId geographicalId() const
static const char * idToString(align::StructureType type)
static const unsigned int nBin_
virtual LocalPoint localPosition() const =0
AlignableDetOrUnitPtr alignableFromDetId(const DetId &detid)
Returns AlignableDetOrUnitPtr corresponding to given DetId.
Alignable * mother() const
Return pointer to container alignable (if any)
Definition: Alignable.h:90
LocalError const & localAlignmentError() const
Return local alligment error.
const align::Alignables & alignables(void) const
get all alignables
TrajectoryStateOnSurface const & backwardPredictedState() const
Access to backward predicted state (from smoother)