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

residual plots More...

#include <MuonInsideOutAnalysisPlots.h>

Collaboration diagram for Muon::ResPlots:

Public Member Functions

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

Public Attributes

TH1res
 
TH1pull
 
TH1exerr
 

Detailed Description

residual plots

Definition at line 18 of file MuonInsideOutAnalysisPlots.h.

Member Function Documentation

◆ book()

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

Definition at line 18 of file MuonInsideOutAnalysisPlots.cxx.

18  {
19  res = new TH1F(prefix+"res","res",100,-100.,100.);
20  pull = new TH1F(prefix+"pull","pull",100,-10.,10.);
21  exerr = new TH1F(prefix+"exerr","exerr",100,0,100.);
22  }

◆ fill()

void Muon::ResPlots::fill ( float  res_,
float  pull_,
float  exerr_ 
)

Definition at line 23 of file MuonInsideOutAnalysisPlots.cxx.

23  {
24  res->Fill(res_);
25  pull->Fill(pull_);
26  exerr->Fill(exerr_);
27  }

Member Data Documentation

◆ exerr

TH1* Muon::ResPlots::exerr

Definition at line 21 of file MuonInsideOutAnalysisPlots.h.

◆ pull

TH1* Muon::ResPlots::pull

Definition at line 20 of file MuonInsideOutAnalysisPlots.h.

◆ res

TH1* Muon::ResPlots::res

Definition at line 19 of file MuonInsideOutAnalysisPlots.h.


The documentation for this struct was generated from the following files:
res
std::pair< std::vector< unsigned int >, bool > res
Definition: JetGroupProductTest.cxx:14
checkCorrelInHIST.prefix
dictionary prefix
Definition: checkCorrelInHIST.py:391
Muon::ResPlots::exerr
TH1 * exerr
Definition: MuonInsideOutAnalysisPlots.h:21
TH1::Fill
int Fill(double)
Definition: rootspy.cxx:285
python.TrigEgammaMonitorHelper.TH1F
def TH1F(name, title, nxbins, bins_par2, bins_par3=None, path='', **kwargs)
Definition: TrigEgammaMonitorHelper.py:24
Muon::ResPlots::pull
TH1 * pull
Definition: MuonInsideOutAnalysisPlots.h:20