// // Jet utilities in static functions // #ifndef TJETUTIL_HH #define TJETUTIL_HH 1 #include "TObject.h" class TStnEvent; class TJetUtil { public: static Int_t FillJetCorr(TStnEvent* event, char* jetBlockName); static Int_t FillJetDr(TStnEvent* event, char* jetBlockName, float etaCut=999.0, float etCut=0.0, float etCorrCut=15.0); static Int_t FillJetType(TStnEvent* event, char* jetBlockName); }; #endif