CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D Class Reference

Public Member Functions

void fill_dxdz (char charge, double abscissa, double slopex, double chi2, int dof)
 
void fill_dydz (char charge, double abscissa, double slopey, double chi2, int dof)
 
void fill_x (char charge, double abscissa, double residx, double chi2, int dof)
 
void fill_x_1d (double residx, double chi2, int dof)
 
void fill_y (char charge, double abscissa, double residy, double chi2, int dof)
 
 MuonSystemMapPlot1D (std::string name, AlignmentMonitorMuonSystemMap1D *module, int bins, double low, double high, bool xy, bool add_1d)
 

Private Attributes

bool m_1d
 
int m_bins
 
TH2F * m_dxdz_2d
 
TH2F * m_dydz_2d
 
std::string m_name
 
TH1F * m_x_1d
 
TH2F * m_x_2d
 
bool m_xy
 
TH2F * m_y_2d
 

Detailed Description

Definition at line 92 of file AlignmentMonitorMuonSystemMap1D.cc.

Constructor & Destructor Documentation

◆ MuonSystemMapPlot1D()

AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::MuonSystemMapPlot1D ( std::string  name,
AlignmentMonitorMuonSystemMap1D module,
int  bins,
double  low,
double  high,
bool  xy,
bool  add_1d 
)

Definition at line 531 of file AlignmentMonitorMuonSystemMap1D.cc.

References LaserClient_cfi::high, LaserClient_cfi::low, m_1d, m_bins, m_dxdz_2d, m_dydz_2d, m_name, m_x_1d, m_x_2d, m_xy, m_y_2d, callgraph::module, LaserClient_cfi::nbins, and svgfig::window().

533  : m_name(name), m_bins(bins), m_xy(xy), m_1d(add_1d) {
534  m_x_2d = m_y_2d = m_dxdz_2d = m_dydz_2d = nullptr;
535  std::stringstream name_x_2d, name_y_2d, name_dxdz_2d, name_dydz_2d;
536  name_x_2d << m_name << "_x_2d";
537  name_y_2d << m_name << "_y_2d";
538  name_dxdz_2d << m_name << "_dxdz_2d";
539  name_dydz_2d << m_name << "_dydz_2d";
540 
541  const int nbins = 200;
542  const double window = 100.;
543 
544  m_x_2d = module->book2D("/iterN/", name_x_2d.str(), "", m_bins, low, high, nbins, -window, window);
545  if (m_xy)
546  m_y_2d = module->book2D("/iterN/", name_y_2d.str(), "", m_bins, low, high, nbins, -window, window);
547  m_dxdz_2d = module->book2D("/iterN/", name_dxdz_2d.str(), "", m_bins, low, high, nbins, -window, window);
548  if (m_xy)
549  m_dydz_2d = module->book2D("/iterN/", name_dydz_2d.str(), "", m_bins, low, high, nbins, -window, window);
550 
551  m_x_1d = nullptr;
552  if (m_1d) {
553  std::stringstream name_x_1d; //, name_y_1d, name_dxdz_1d, name_dydz_1d;
554  name_x_1d << m_name << "_x_1d";
555  m_x_1d = module->book1D("/iterN/", name_x_1d.str(), "", nbins, -window, window);
556  }
557 }
def window(xmin, xmax, ymin, ymax, x=0, y=0, width=100, height=100, xlogbase=None, ylogbase=None, minusInfinity=-1000, flipx=False, flipy=True)
Definition: svgfig.py:643

Member Function Documentation

◆ fill_dxdz()

void AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::fill_dxdz ( char  charge,
double  abscissa,
double  slopex,
double  chi2,
int  dof 
)

Definition at line 585 of file AlignmentMonitorMuonSystemMap1D.cc.

References hltPixelTracks_cff::chi2.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

586  {
587  if (chi2 > 0.) {
588  double residual = slopex * 1000.;
589  //double weight = dof / chi2;
590  m_dxdz_2d->Fill(abscissa, residual);
591  }
592 }

◆ fill_dydz()

void AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::fill_dydz ( char  charge,
double  abscissa,
double  slopey,
double  chi2,
int  dof 
)

Definition at line 594 of file AlignmentMonitorMuonSystemMap1D.cc.

References hltPixelTracks_cff::chi2.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

595  {
596  if (m_xy && chi2 > 0.) {
597  double residual = slopey * 1000.;
598  //double weight = dof / chi2;
599  m_dydz_2d->Fill(abscissa, residual);
600  }
601 }

◆ fill_x()

void AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::fill_x ( char  charge,
double  abscissa,
double  residx,
double  chi2,
int  dof 
)

Definition at line 567 of file AlignmentMonitorMuonSystemMap1D.cc.

References hltPixelTracks_cff::chi2.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

568  {
569  if (chi2 > 0.) {
570  double residual = residx * 10.;
571  //double weight = dof / chi2;
572  m_x_2d->Fill(abscissa, residual);
573  }
574 }

◆ fill_x_1d()

void AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::fill_x_1d ( double  residx,
double  chi2,
int  dof 
)

Definition at line 559 of file AlignmentMonitorMuonSystemMap1D.cc.

References hltPixelTracks_cff::chi2.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

559  {
560  if (m_1d && chi2 > 0.) {
561  // assume that residx was in radians
562  double residual = residx * 1000.;
563  m_x_1d->Fill(residual);
564  }
565 }

◆ fill_y()

void AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::fill_y ( char  charge,
double  abscissa,
double  residy,
double  chi2,
int  dof 
)

Definition at line 576 of file AlignmentMonitorMuonSystemMap1D.cc.

References hltPixelTracks_cff::chi2.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

577  {
578  if (m_xy && chi2 > 0.) {
579  double residual = residy * 10.;
580  //double weight = dof / chi2;
581  m_y_2d->Fill(abscissa, residual);
582  }
583 }

Member Data Documentation

◆ m_1d

bool AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_1d
private

Definition at line 112 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

◆ m_bins

int AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_bins
private

Definition at line 110 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

◆ m_dxdz_2d

TH2F * AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_dxdz_2d
private

Definition at line 114 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

◆ m_dydz_2d

TH2F * AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_dydz_2d
private

Definition at line 114 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

◆ m_name

std::string AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_name
private

Definition at line 109 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

◆ m_x_1d

TH1F* AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_x_1d
private

Definition at line 113 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

◆ m_x_2d

TH2F* AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_x_2d
private

Definition at line 114 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

◆ m_xy

bool AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_xy
private

Definition at line 111 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

◆ m_y_2d

TH2F * AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_y_2d
private

Definition at line 114 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().