File indexing completed on 2025-12-18 09:22:11
0001 #include <emcnoisytowerfinder/emcNoisyTowerFinder.h>
0002
0003 #include <Rtypes.h> // for R__LOAD_LIBRARY macro
0004
0005 R__LOAD_LIBRARY(libemcNoisyTowerFinder.so)
0006
0007 void doFindTowersHcal(const std::string &infile="/sphenix/u/bseidlitz/work/forBayal/out_40858.root",const std::string &outfile = "output.root")
0008 {
0009 emcNoisyTowerFinder *calo = new emcNoisyTowerFinder("noisyTowerFinder","");
0010
0011 calo->FindHot(infile,outfile,"h_CaloValid_ohcal_etaphi_wQA");
0012 }
0013