Esempio n. 1
0
void ExclusionPlot(TFile* contours, TFile* contoursM, TFile* contoursP){
  ContourFile = contours;
  ContourFileM = contoursM;
  ContourFileP = contoursP;
  gStyle->SetPalette(1);

  gStyle->SetPadTickX(1);  // To get tick marks on the opposite side of the frame
  gStyle->SetPadTickY(1);

  gStyle->SetOptTitle(0);
  gStyle->SetTitleFont(42);
  gStyle->SetTitleColor(1);
  gStyle->SetTitleTextColor(1);
  gStyle->SetTitleFillColor(10);
  gStyle->SetTitleColor(1, "XYZ");
  gStyle->SetTitleFont(42, "XYZ");



  Int_t tanBeta = 10; //can also be set to 40
  Bool_t plotLO = false;
  Bool_t tb40_plotExpected=true; //can be set to false or true for tan beta 40. no effect on tan beta 10
   
  CommandMSUGRA("Limits_2011.root",tanBeta, plotLO, tb40_plotExpected);
}
Esempio n. 2
0
void ExclusionPlot(){
  gStyle->SetPalette(1);

  Int_t tanBeta = 10;
  Bool_t plotLO = false;

  CommandMSUGRA("ExclusionPlot.root",tanBeta, plotLO);

}
Esempio n. 3
0
void ExclusionPlot(){
  gStyle->SetPalette(1);

  gStyle->SetPadTickX(1);  // To get tick marks on the opposite side of the frame
  gStyle->SetPadTickY(1);

  gStyle->SetOptTitle(0);
  gStyle->SetTitleFont(42);
  gStyle->SetTitleColor(1);
  gStyle->SetTitleTextColor(1);
  gStyle->SetTitleFillColor(10);
  gStyle->SetTitleColor(1, "XYZ");
  gStyle->SetTitleFont(42, "XYZ");



  Int_t tanBeta = 40;
  Bool_t plotLO = false;
   
  CommandMSUGRA("35pb_expected_11.root",tanBeta, plotLO);
}
TCanvas * ExclusionPlot(){
  gStyle->SetPalette(1);

  gStyle->SetPadTickX(1);  // To get tick marks on the opposite side of the frame
  gStyle->SetPadTickY(1);

  gStyle->SetOptTitle(0);
  gStyle->SetTitleFont(42);
  gStyle->SetTitleColor(1);
  gStyle->SetTitleTextColor(1);
  gStyle->SetTitleFillColor(10);
  gStyle->SetTitleColor(1, "XYZ");
  gStyle->SetTitleFont(42, "XYZ");



  Int_t tanBeta = 10;
  Bool_t plotLO = false;
   
  TCanvas * canvas = CommandMSUGRA("SSDL_msugra_tanb10.root",tanBeta, plotLO);
  return canvas;
}