/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWIO/RNTupleTempInput/bin/CollUtil.h
36 строк
946 B
Christopher Jones
Added FWIO/RNTupleTempTests items
03 дек 2025, 00:03
03 дек 2025, 00:03
f6b725e
Код
Авторство
О чём код?
#ifndef Modules_CollUtil_h #define Modules_CollUtil_h #include "Rtypes.h" #include <string> class TFile; class TTree; namespace ROOT { class RNTupleReader; } namespace edm::rntuple_temp { 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(ROOT::RNTupleReader *uuidTree); void printUuids(ROOT::RNTupleReader *uuidTree); void printEventLists(TFile *tfl); void printEventsInLumis(TFile *tfl); void printFieldNames(ROOT::RNTupleReader &tree); void longFieldPrint(ROOT::RNTupleReader &tr); void clusterPrint(ROOT::RNTupleReader &tr); void pagePrint(ROOT::RNTupleReader &tr, const std::string &branchName); } // namespace edm::rntuple_temp #endif