/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
IOPool/Common/bin/CollUtil.h
26 строк
626 B
Matti Kortelainen
Add option to edmFileUtil to print detailed basket information for a given branch
29 май 2025, 21:20
29 май 2025, 21:20
d2fee35
Код
Авторство
О чём код?
#ifndef Modules_CollUtil_h #define Modules_CollUtil_h #include "Rtypes.h" #include <string> class TFile; class TTree; namespace edm { TFile *openFileHdl(const std::string &fname); void printTrees(TFile *hdl); Long64_t numEntries(TFile *hdl, const std::string &trname); void printBranchNames(TTree *tree); void longBranchPrint(TTree *tr); void clusterPrint(TTree *tr); void basketPrint(TTree *tr, const std::string &branchName); std::string getUuid(TTree *uuidTree); void printUuids(TTree *uuidTree); void printEventLists(TFile *tfl); void printEventsInLumis(TFile *tfl); } // namespace edm #endif