FairRoot/PandaRoot
hdecorator.C
Go to the documentation of this file.
1 void DecoratePzPt(TH1* myhisto) {
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 }
8 
9 void DecoratePtDPt(TH1* myhisto) {
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 }
16 
17 void DecorateDPhi(TH1* myhisto) {
18  myhisto->SetXTitle("q #upoint #Delta#phi [rad]");
19  myhisto->GetXaxis()->SetRangeUser(-3.5, 3.5);
20 }
void DecoratePtDPt(TH1 *myhisto)
Definition: hdecorator.C:9
void DecoratePzPt(TH1 *myhisto)
Definition: hdecorator.C:1
void DecorateDPhi(TH1 *myhisto)
Definition: hdecorator.C:17