ATLAS Offline Software
Loading...
Searching...
No Matches
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

TH1 * res
TH1 * pull
TH1 * exerr

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 }
TH1F(name, title, nxbins, bins_par2, bins_par3=None, path='', **kwargs)

◆ 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: