CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
CTPPSBeamSmearingValidator::SectorPlots Struct Reference

Public Member Functions

 SectorPlots ()
 
void write () const
 

Public Attributes

std::unique_ptr< TH1D > h_de_p
 
std::unique_ptr< TH1D > h_de_th_x
 
std::unique_ptr< TH1D > h_de_th_y
 

Detailed Description

Definition at line 41 of file CTPPSBeamSmearingValidator.cc.

Constructor & Destructor Documentation

CTPPSBeamSmearingValidator::SectorPlots::SectorPlots ( )
inline

Definition at line 45 of file CTPPSBeamSmearingValidator.cc.

45  :
46  h_de_th_x(new TH1D("", ";#Delta#theta_{x} (rad)", 100, 0., 0.)),
47  h_de_th_y(new TH1D("", ";#Delta#theta_{y} (rad)", 100, 0., 0.)),
48  h_de_p(new TH1D("", ";#Deltap (GeV)", 100, 0., 0.)) {}

Member Function Documentation

void CTPPSBeamSmearingValidator::SectorPlots::write ( ) const
inline

Definition at line 50 of file CTPPSBeamSmearingValidator.cc.

51  {
52  h_de_th_x->Write("h_de_th_x");
53  h_de_th_y->Write("h_de_th_y");
54  h_de_p->Write("h_de_p");
55  }

Member Data Documentation

std::unique_ptr<TH1D> CTPPSBeamSmearingValidator::SectorPlots::h_de_p

Definition at line 43 of file CTPPSBeamSmearingValidator.cc.

std::unique_ptr<TH1D> CTPPSBeamSmearingValidator::SectorPlots::h_de_th_x

Definition at line 43 of file CTPPSBeamSmearingValidator.cc.

std::unique_ptr<TH1D> CTPPSBeamSmearingValidator::SectorPlots::h_de_th_y

Definition at line 43 of file CTPPSBeamSmearingValidator.cc.