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);
0017 gStyle->SetTextFont(42);
0018 gStyle->SetLabelFont(42, "XYZ");
0019 gStyle->SetTitleFont(42, "XYZ");
0020
0021
0022
0023
0024
0025
0026 }