Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:15

0001 void psetDumpFromTTree(TString dir) {
0002     TTree *t = (TTree *) gFile->Get(dir+"/fitter_tree");
0003     TList *md = t->GetUserInfo();
0004     TObjString *obj;
0005     TIter next(md); 
0006     while ((obj = (TObjString*) next())) {
0007         std::cout << "   =========== PROCESS CONFIGURATION DUMP ===========   " << std::endl;
0008         std::cout << "   ==================================================   " << std::endl;
0009         std::cout << obj->GetString() << std::endl;
0010         std::cout << "   ==================================================   " << std::endl;
0011     }
0012 }