86 m_maxDxy(cfg.getParameter<double>(
"maxDxy")),
97 std::string wheelname[5] = {
"wheelm2_",
"wheelm1_",
"wheelz_",
"wheelp1_",
"wheelp2_"};
101 for (
int sector = 1; sector <= 14; sector++) {
102 if (
station != 4 && sector > 12)
105 char stationname[20];
106 sprintf(stationname,
"st%d_",
station);
109 sprintf(sectorname,
"sector%02d_", sector);
111 for (
int component = 0; component <
kNumComponents; component++) {
112 std::stringstream th2f_name, tprofile_name;
113 th2f_name <<
"th2f_" << wheelname[
wheel + 2] << stationname << sectorname;
114 tprofile_name <<
"tprofile_" << wheelname[
wheel + 2] << stationname << sectorname;
116 double yminmax = 50., xminmax = 0.05;
121 th2f_name <<
"deltax";
122 tprofile_name <<
"deltax";
124 th2f_name <<
"deltadxdz";
125 tprofile_name <<
"deltadxdz";
129 book2D(
"/iterN/", th2f_name.str(),
"", 30, -xminmax, xminmax, ynbins, -yminmax, yminmax);
131 bookProfile(
"/iterN/", tprofile_name.str(),
"", 30, -xminmax, xminmax);
136 std::string stname[8] = {
"Ep_S1_",
"Ep_S2_",
"Ep_S3_",
"Ep_S4_",
"Em_S1_",
"Em_S2_",
"Em_S3_",
"Em_S4_"};
142 if (st > 1 &&
ring > 2)
148 sprintf(ringname,
"R%d_",
ring);
151 sprintf(chname,
"C%02d_",
chamber);
153 for (
int component = 0; component <
kNumComponents; component++) {
154 std::stringstream componentname;
155 double yminmax = 50., xminmax = 0.05;
161 componentname <<
"deltax";
163 componentname <<
"deltadxdz";
166 std::stringstream th2f_name, tprofile_name;
167 th2f_name <<
"th2f_" << stname[
station] << ringname << chname << componentname.str();
168 tprofile_name <<
"tprofile_" << stname[
station] << ringname << chname << componentname.str();
171 book2D(
"/iterN/", th2f_name.str(),
"", 30, -xminmax, xminmax, 100, -yminmax, yminmax);
173 bookProfile(
"/iterN/", tprofile_name.str(),
"", 30, -xminmax, xminmax);
179 book1D(
"/iterN/",
"trackerRedChi2Diff",
"Fit-minus-refit tracker reduced chi^2", 100, -5., 5.);
202 for (ConstTrajTrackPairCollection::const_iterator trajtrack = trajtracks.begin(); trajtrack != trajtracks.end();
209 iSetup, magneticField, globalGeometry, muonDetIdAssociator_, prop, traj, track,
pNavigator(), 1000.);
217 for (reco::MuonCollection::const_iterator
muon = muons->begin();
muon != muons->end(); ++
muon) {
218 if (!(
muon->isTrackerMuon() &&
muon->innerTrack().isNonnull()))
238 std::vector<DetId> chamberIds = mrft.
chamberIds();
239 for (
unsigned ch = 0; ch < chamberIds.size(); ch++)
256 for (std::vector<DetId>::const_iterator chamberId = chamberIds.begin(); chamberId != chamberIds.end(); ++chamberId) {
265 int wheel = dtid.wheel() + 2;
266 int station = dtid.station() - 1;
267 int sector = dtid.sector() - 1;
269 double resid_x = 10. * dt13->global_residual();
270 double resid_dxdz = 1000. * dt13->global_resslope();
272 if (fabs(resid_x) < 100. && fabs(resid_dxdz) < 100.) {
286 int station = 4 * cscid.endcap() + cscid.station() - 5;
287 int ring = cscid.ring() - 1;
288 if (cscid.station() == 1 && cscid.ring() == 4)
290 int chamber = cscid.chamber() - 1;
292 double resid_x = 10. * csc->global_residual();
293 double resid_dxdz = 1000. * csc->global_resslope();
295 if (fabs(resid_x) < 100. && fabs(resid_dxdz) < 100.) {
double p() const
momentum vector magnitude
AlignableNavigator * pNavigator()
bool m_minNCrossedChambers
double normalizedChi2() const
chi-squared divided by n.d.o.f. (or chi-squared * 1e6 if n.d.o.f. is zero)
TH2F * book2D(std::string dir, std::string name, std::string title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
double m_maxTrackerRedChi2
TH2F * th2f_st_ring_chamber[8][3][36][kNumComponents]
int trackerNumHits() const
TProfile * tprofile_st_ring_chamber[8][3][36][kNumComponents]
TProfile * bookProfile(std::string dir, std::string name, std::string title, int nchX, double lowX, double highX, int nchY=1, double lowY=0., double highY=0., const char *option="s")
TH1F * th1f_trackerRedChi2Diff
AlignmentMonitorMuonVsCurvature(const edm::ParameterSet &cfg)
const std::vector< DetId > chamberIds() const
void event(const edm::Event &iEvent, const edm::EventSetup &iSetup, const ConstTrajTrackPairCollection &iTrajTracks) override
Called for each event (by "run()"): may be reimplemented.
double pt() const
track transverse momentum
const reco::Track * getTrack()
void book() override
Book or retrieve histograms; MUST be reimplemented.
std::vector< ConstTrajTrackPair > ConstTrajTrackPairCollection
const edm::InputTag m_beamSpotTag
TProfile * tprofile_wheel_st_sector[5][4][14][kNumComponents]
TH1F * book1D(std::string dir, std::string name, std::string title, int nchX, double lowX, double highX)
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
double pz() const
z coordinate of momentum vector
double normalizedChi2() const
void processMuonResidualsFromTrack(MuonResidualsFromTrack &mrft, const Trajectory *traj=0)
double trackerRedChi2() const
TH1F * th1f_trackerRedChi2
~AlignmentMonitorMuonVsCurvature() override
int charge() const
track electric charge
#define DEFINE_EDM_PLUGIN(factory, type, name)
const Point & position() const
position
TH2F * th2f_wheel_st_sector[5][4][14][kNumComponents]
double dxy() const
dxy parameter. (This is the transverse impact parameter w.r.t. to (0,0,0) ONLY if refPoint is close t...
edm::InputTag m_muonCollectionTag
bool contains_TIDTEC() const
MuonChamberResidual * chamberResidual(DetId chamberId, int type)