EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
sf2root.C
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file sf2root.C
1 
2 void sf2root(TString fname)
3 {
4  // Load basic libraries;
5  gROOT->Macro("$VMCWORKDIR/gconfig/rootlogon.C");
6 
7  // Import ${VMCWORKDIR}/input/${fname}.dat & initialize;
8  PndSolenoidMap *fField = new PndSolenoidMap(fname, "A");
9  fField->Init();
10 
11  // Convert and dump ROOT version to ./${fname}.root;
12  fField->WriteRootFile(fname + ".root", fname);
13 
14  exit(0);
15 } // sf2root()
16