StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
plTh1.C
1 void plTh1() {
2  // char *nameUn="rb400_wp_unp_ct5m_pt25.root";
3  //char *namePol="rb400_wp_pol_dssv08_pt25.root";
4  char *nameUn="asyWALfinalAPS/deFlor_wp_unp_mrst02_pt25_full.root";
5  char *namePol="asyWALfinalAPS/deFlor_wp_pol_dssv08_pt25_full.root";
6  funp=new TFile(nameUn); assert(funp->IsOpen());
7  fpol=new TFile(namePol); assert(fpol->IsOpen());
8 
9  hunp= (TH1F*)funp->Get("h3"); assert(hunp);
10 
11  hpol=(TH1F*) fpol->Get("h3"); assert(hpol);
12  hal=(TH1F*) hpol->Clone(); hal->SetNameTitle("al","A_L vs. lepton eta");
13  hal->Divide(hunp);//hal->Scale(-1.);
14  c=new TCanvas();
15  c->Divide(2,2);
16 
17  c->cd(1);hunp->Draw();
18  c->cd(2);hpol->Draw();
19 
20  c->cd(3);hal->Draw(); hal->SetLineColor(kRed);;
21  hal->SetMaximum(0.6); hal->SetMinimum(-0.6);
22 }
23