Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:57:23

0001 {
0002   std::string relUser = gSystem->Getenv("CMSSW_BASE");
0003   std::string relBase = gSystem->Getenv("CMSSW_RELEASE_BASE");
0004 
0005   gInterpreter->AddIncludePath((relUser + "/src").c_str());
0006   gInterpreter->AddIncludePath((relBase + "/src").c_str());
0007 
0008   gSystem->Load("libAlignmentCommonAlignment.so");
0009   gSystem->Load("libDataFormatsSiPixelDetId.so");
0010   gSystem->Load("libDataFormatsSiStripDetId.so");
0011   gSystem->Load("libFWCoreFWLite.so");
0012   FWLiteEnabler::enable();
0013 
0014   gStyle->SetCanvasBorderMode(0);
0015   gStyle->SetPadBorderMode(0);
0016   gStyle->SetStatFont(42); // Arial
0017   gStyle->SetTextFont(42); // Arial
0018   gStyle->SetLabelFont(42, "XYZ");
0019   gStyle->SetTitleFont(42, "XYZ");
0020 
0021 //   gStyle->SetStatFontSize(.06);
0022 //   gStyle->SetLabelSize(.04, "XYZ");
0023 //   gStyle->SetTitleSize(.04, "XYZ");
0024 
0025 //   ((TRint*)gROOT->GetApplication())->SetPrompt("// ");
0026 }