Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-06-03 00:12:08

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);
0019   void basketPrint(TTree *tr, const std::string &branchName);
0020   std::string getUuid(TTree *uuidTree);
0021   void printUuids(TTree *uuidTree);
0022   void printEventLists(TFile *tfl);
0023   void printEventsInLumis(TFile *tfl);
0024 }  // namespace edm
0025 
0026 #endif