FairRoot/PandaRoot
Functions
hdecorator.C File Reference

Go to the source code of this file.

Functions

void DecoratePzPt (TH1 *myhisto)
 
void DecoratePtDPt (TH1 *myhisto)
 
void DecorateDPhi (TH1 *myhisto)
 

Function Documentation

void DecorateDPhi ( TH1 *  myhisto)

Definition at line 17 of file hdecorator.C.

17  {
18  myhisto->SetXTitle("q #upoint #Delta#phi [rad]");
19  myhisto->GetXaxis()->SetRangeUser(-3.5, 3.5);
20 }
void DecoratePtDPt ( TH1 *  myhisto)

Definition at line 9 of file hdecorator.C.

9  {
10  myhisto->SetXTitle("q #upoint p_{t} [GeV/c]");
11  myhisto->SetYTitle("#Deltap_{t} / p_{t}");
12  myhisto->GetXaxis()->SetRangeUser(-1500.0, 1500.0);
13  myhisto->GetYaxis()->SetRangeUser(-1.0, 1.0);
14  myhisto->GetZaxis()->SetRangeUser(0.0, 35.0);
15 }
void DecoratePzPt ( TH1 *  myhisto)

Definition at line 1 of file hdecorator.C.

1  {
2  myhisto->SetXTitle("p_{z} [GeV/c]");
3  myhisto->SetYTitle("p_{t} [GeV/c]");
4  myhisto->GetXaxis()->SetRangeUser(-3.0, 16.0);
5  myhisto->GetYaxis()->SetRangeUser(0.0, 1.5);
6  myhisto->GetZaxis()->SetRangeUser(0.0, 20.0);
7 }