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 81 of file AlignmentMonitorMuonSystemMap1D.cc.

Constructor & Destructor Documentation

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

Definition at line 495 of file AlignmentMonitorMuonSystemMap1D.cc.

References AlignmentMonitorBase::book1D(), AlignmentMonitorBase::book2D(), m_1d, m_bins, m_dxdz_2d, m_dydz_2d, m_name, m_x_1d, m_x_2d, m_xy, m_y_2d, pileupCalc::nbins, and svgfig::window().

496  : m_name(name), m_bins(bins), m_xy(xy), m_1d(add_1d)
497 {
498  m_x_2d = m_y_2d = m_dxdz_2d = m_dydz_2d = nullptr;
499  std::stringstream name_x_2d, name_y_2d, name_dxdz_2d, name_dydz_2d;
500  name_x_2d << m_name << "_x_2d";
501  name_y_2d << m_name << "_y_2d";
502  name_dxdz_2d << m_name << "_dxdz_2d";
503  name_dydz_2d << m_name << "_dydz_2d";
504 
505  const int nbins = 200;
506  const double window = 100.;
507 
508  m_x_2d = module->book2D("/iterN/", name_x_2d.str(), "", m_bins, low, high, nbins, -window, window);
509  if (m_xy) m_y_2d = module->book2D("/iterN/", name_y_2d.str(), "", m_bins, low, high, nbins, -window, window);
510  m_dxdz_2d = module->book2D("/iterN/", name_dxdz_2d.str(), "", m_bins, low, high, nbins, -window, window);
511  if (m_xy) m_dydz_2d = module->book2D("/iterN/", name_dydz_2d.str(), "", m_bins, low, high, nbins, -window, window);
512 
513  m_x_1d = nullptr;
514  if (m_1d) {
515  std::stringstream name_x_1d;//, name_y_1d, name_dxdz_1d, name_dydz_1d;
516  name_x_1d << m_name << "_x_1d";
517  m_x_1d = module->book1D("/iterN/", name_x_1d.str(), "", nbins, -window, window);
518  }
519 }
TH2F * book2D(std::string dir, std::string name, std::string title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
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:642
TH1F * book1D(std::string dir, std::string name, std::string title, int nchX, double lowX, double highX)

Member Function Documentation

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

Definition at line 552 of file AlignmentMonitorMuonSystemMap1D.cc.

References m_dxdz_2d.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

553 {
554  if (chi2 > 0.) {
555  double residual = slopex * 1000.;
556  //double weight = dof / chi2;
557  m_dxdz_2d->Fill(abscissa, residual);
558  }
559 }
void AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::fill_dydz ( char  charge,
double  abscissa,
double  slopey,
double  chi2,
int  dof 
)

Definition at line 562 of file AlignmentMonitorMuonSystemMap1D.cc.

References DEFINE_EDM_PLUGIN, m_dydz_2d, and m_xy.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

563 {
564  if (m_xy && chi2 > 0.) {
565  double residual = slopey * 1000.;
566  //double weight = dof / chi2;
567  m_dydz_2d->Fill(abscissa, residual);
568  }
569 }
void AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::fill_x ( char  charge,
double  abscissa,
double  residx,
double  chi2,
int  dof 
)

Definition at line 532 of file AlignmentMonitorMuonSystemMap1D.cc.

References m_x_2d.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

533 {
534  if (chi2 > 0.) {
535  double residual = residx * 10.;
536  //double weight = dof / chi2;
537  m_x_2d->Fill(abscissa, residual);
538  }
539 }
void AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::fill_x_1d ( double  residx,
double  chi2,
int  dof 
)

Definition at line 522 of file AlignmentMonitorMuonSystemMap1D.cc.

References m_1d, and m_x_1d.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

523 {
524  if (m_1d && chi2 > 0.) {
525  // assume that residx was in radians
526  double residual = residx * 1000.;
527  m_x_1d->Fill(residual);
528  }
529 }
void AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::fill_y ( char  charge,
double  abscissa,
double  residy,
double  chi2,
int  dof 
)

Definition at line 542 of file AlignmentMonitorMuonSystemMap1D.cc.

References m_xy, and m_y_2d.

Referenced by AlignmentMonitorMuonSystemMap1D::processMuonResidualsFromTrack().

543 {
544  if (m_xy && chi2 > 0.) {
545  double residual = residy * 10.;
546  //double weight = dof / chi2;
547  m_y_2d->Fill(abscissa, residual);
548  }
549 }

Member Data Documentation

bool AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_1d
private

Definition at line 96 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by fill_x_1d(), and MuonSystemMapPlot1D().

int AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_bins
private

Definition at line 94 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

TH2F * AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_dxdz_2d
private

Definition at line 98 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by fill_dxdz(), and MuonSystemMapPlot1D().

TH2F * AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_dydz_2d
private

Definition at line 98 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by fill_dydz(), and MuonSystemMapPlot1D().

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

Definition at line 93 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by MuonSystemMapPlot1D().

TH1F* AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_x_1d
private

Definition at line 97 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by fill_x_1d(), and MuonSystemMapPlot1D().

TH2F* AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_x_2d
private

Definition at line 98 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by fill_x(), and MuonSystemMapPlot1D().

bool AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_xy
private

Definition at line 95 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by fill_dydz(), fill_y(), and MuonSystemMapPlot1D().

TH2F * AlignmentMonitorMuonSystemMap1D::MuonSystemMapPlot1D::m_y_2d
private

Definition at line 98 of file AlignmentMonitorMuonSystemMap1D.cc.

Referenced by fill_y(), and MuonSystemMapPlot1D().