Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
do_eta_fit2_ihcal.C
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file do_eta_fit2_ihcal.C
1 #include <GlobalVariables.C>
2 
3 #include "LiteCaloEval.h"
4 R__LOAD_LIBRARY(libLiteCaloEvalTowSlope.so)
5 
6 
7 void do_eta_fit2_ihcal(const char * reffile, const char * infile, const char * modfile)
8 {
9 
10  TStopwatch t;
11  t.Start();
12 
13  gSystem->Load("libLiteCaloEvalTowSlope.so");
14 
15 
16  LiteCaloEval reflce, modlce;
17 
20 
21  reflce.Get_Histos(reffile); // get histos for modified files
22  modlce.Get_Histos(infile,modfile); // get histos for non mod files
23 
26  modlce.setFitMin(0.1);
27  modlce.setFitMax(0.4);
28 
31  modlce.FitRelativeShifts(&reflce,10);
32 
33  t.Stop();
34  t.Print();
35 
36 }