ATLAS Offline Software
Public Member Functions | Public Attributes | List of all members
Muon::ResPlotsPt Struct Reference

residual plots vs pt More...

#include <MuonInsideOutAnalysisPlots.h>

Collaboration diagram for Muon::ResPlotsPt:

Public Member Functions

void book (const TString &prefix)
 
void fill (float res_, float pull_, float exerr_, float pt)
 

Public Attributes

TH2 * res_p
 
TH2 * pull_p
 
TH2 * exerr_p
 

Detailed Description

residual plots vs pt

Definition at line 28 of file MuonInsideOutAnalysisPlots.h.

Member Function Documentation

◆ book()

void Muon::ResPlotsPt::book ( const TString &  prefix)

Definition at line 29 of file MuonInsideOutAnalysisPlots.cxx.

29  {
30  res_p = new TH2F(prefix+"res_p","res_p",100,-100.,100.,100,0.,300.);
31  pull_p = new TH2F(prefix+"pull_p","pull_p",100,-10.,10.,100,0.,300.);
32  exerr_p = new TH2F(prefix+"exerr_p","exerr_p",100,0.,100.,100,0.,300.);
33  }

◆ fill()

void Muon::ResPlotsPt::fill ( float  res_,
float  pull_,
float  exerr_,
float  pt 
)

Definition at line 34 of file MuonInsideOutAnalysisPlots.cxx.

34  {
35  res_p->Fill(res_,p_);
36  pull_p->Fill(pull_,p_);
37  exerr_p->Fill(exerr_,p_);
38  }

Member Data Documentation

◆ exerr_p

TH2* Muon::ResPlotsPt::exerr_p

Definition at line 31 of file MuonInsideOutAnalysisPlots.h.

◆ pull_p

TH2* Muon::ResPlotsPt::pull_p

Definition at line 30 of file MuonInsideOutAnalysisPlots.h.

◆ res_p

TH2* Muon::ResPlotsPt::res_p

Definition at line 29 of file MuonInsideOutAnalysisPlots.h.


The documentation for this struct was generated from the following files:
Muon::ResPlotsPt::exerr_p
TH2 * exerr_p
Definition: MuonInsideOutAnalysisPlots.h:31
python.TrigEgammaMonitorHelper.TH2F
def TH2F(name, title, nxbins, bins_par2, bins_par3, bins_par4, bins_par5=None, bins_par6=None, path='', **kwargs)
Definition: TrigEgammaMonitorHelper.py:45
checkCorrelInHIST.prefix
dictionary prefix
Definition: checkCorrelInHIST.py:391
Muon::ResPlotsPt::res_p
TH2 * res_p
Definition: MuonInsideOutAnalysisPlots.h:29
Muon::ResPlotsPt::pull_p
TH2 * pull_p
Definition: MuonInsideOutAnalysisPlots.h:30