EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
extract-cd-step.C
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file extract-cd-step.C
1 
2 void extract_cd_step(const char *fin, const char *fout)
3 {
4  TFile froot(fin);
5  auto ostr = dynamic_cast<TObjString *>(froot.Get("CD.STEP"));
6  if (ostr) {
7  std::ofstream fstep(fout);
8  fstep << ostr->GetString();
9  fstep.close();
10  } //if
11 
12  exit(0);
13 } // extract_cd_step()