ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/auterman/SusyScan/PlotScript/GlobalFunctions.h
(Generate patch)

Comparing UserCode/auterman/SusyScan/PlotScript/GlobalFunctions.h (file contents):
Revision 1.11 by auterman, Tue Feb 22 13:59:19 2011 UTC vs.
Revision 1.12 by auterman, Wed Mar 2 13:31:32 2011 UTC

# Line 28 | Line 28 | double MCha2(const SusyScan* p){ return
28   double SignalUncertKfactor(const SusyScan* p){return fabs(p->signal_kfactor_UP-p->signal_kfactor_DN)/(2.0*p->signal_kfactor); }
29   double SignalUncertJEC(const SusyScan* p){ return (fabs(p->signal_JEC_UP)+fabs(p->signal_JEC_DN))/(2.0*p->signal); }
30   double SignalUncertMuIso(const SusyScan* p){ return (fabs(p->signal_MuIso_UP)+fabs(p->signal_MuIso_DN))/(2.0*p->signal); }
31 + double SignalKfactor(const SusyScan* p){return p->signal_kfactor; }
32  
33   double Xsection(const SusyScan* p){ return p->Xsection; }
34   double ExpXsecLimit(const SusyScan* p){ return p->ExpXsecLimit; }
# Line 148 | Line 149 | TGraph* set_sneutrino_d0_2(Int_t tanBeta
149  
150   TGraph* set_lep_ch_tanBeta10(){
151  
152 <  double ch_m0[11];
153 <  double ch_m12[11];
152 >  double ch_m0[12];
153 >  double ch_m12[12];
154  
155    ch_m0[0] = 0;
156    ch_m0[1] = 100;
# Line 160 | Line 161 | TGraph* set_lep_ch_tanBeta10(){
161    ch_m0[6] = 600;
162    ch_m0[7] = 700;
163    ch_m0[8] = 800;
164 <  ch_m0[9] = 800;
165 <  ch_m0[10] = 0;
164 >  ch_m0[9] = 1000;
165 >  ch_m0[10] = 1000;
166 >  ch_m0[11] = 0;
167  
168    ch_m12[0] = 163;
169    ch_m12[1] = 162;
# Line 172 | Line 174 | TGraph* set_lep_ch_tanBeta10(){
174    ch_m12[6] = 157;
175    ch_m12[7] = 156;
176    ch_m12[8] = 155.4;
177 <  ch_m12[9] = 0;
177 >  ch_m12[9] = 154;
178    ch_m12[10] = 0;
179 +  ch_m12[11] = 0;
180    
181    
182 <  TGraph* ch_gr = new TGraph(11,ch_m0,ch_m12);
182 >  TGraph* ch_gr = new TGraph(12,ch_m0,ch_m12);
183  
184    ch_gr->SetFillColor(3);
185    ch_gr->SetLineColor(3);
# Line 458 | Line 461 | TGraph* set_tev_stau(Int_t tanBeta){
461  
462   }
463  
464 + TGraph* sq_LEP(){
465 +    double sq[] = {0,0,100,100};
466 +    double gl[] = {0,2000,2000,0};  
467 +    TGraph* res = new TGraph(4,sq,gl);
468 +    res->SetFillColor(kBlue);
469 +    return res;
470 + }
471 +
472 + TGraph* gl_TEV(){
473 +    double sq[] = {0,2000,2000,0};
474 +    double gl[] = {0,0,190,190};  
475 +    TGraph* res = new TGraph(4,sq,gl);
476 +    res->SetFillColor(kGreen+2);
477 +    return res;
478 + }
479 +
480 + TGraph* gl_CDF(){
481 +    double sq[] = {0,2000,2000,0};
482 +    double gl[] = {190,190,230,230};  
483 +    TGraph* res = new TGraph(4,sq,gl);
484 +    res->SetFillColor(kOrange+5);
485 +    return res;
486 + }
487 +
488 + TGraph* gl_DEZ(){
489 +    double sq[] = {0,2000,2000,0};
490 +    double gl[] = {230,230,255,255};  
491 +    TGraph* res = new TGraph(4,sq,gl);
492 +    res->SetFillColor(kYellow-5);
493 +    return res;
494 + }
495 +
496 + TGraph* gl_WHT(){
497 +    double sq[] = {101,2000,2000,101};
498 +    double gl[] = {256,256,400,400};  
499 +    TGraph* res = new TGraph(4,sq,gl);
500 +    res->SetFillColor(kWhite);
501 +    return res;
502 + }
503  
504  
505  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines