File indexing completed on 2025-05-15 02:28:05
0001 #ifndef Modules_CollUtil_h
0002 #define Modules_CollUtil_h
0003
0004 #include "Rtypes.h"
0005
0006 #include <string>
0007
0008 class TFile;
0009 class TTree;
0010
0011 namespace edm {
0012
0013 TFile *openFileHdl(const std::string &fname);
0014 void printTrees(TFile *hdl);
0015 Long64_t numEntries(TFile *hdl, const std::string &trname);
0016 void printBranchNames(TTree *tree);
0017 void longBranchPrint(TTree *tr);
0018 void clusterPrint(TTree *tr, bool isEventsTree);
0019 std::string getUuid(TTree *uuidTree);
0020 void printUuids(TTree *uuidTree);
0021 void printEventLists(TFile *tfl);
0022 void printEventsInLumis(TFile *tfl);
0023 }
0024
0025 #endif