/* * IoTest.h * * Created on: 21 cze 2024 * Author: daniel */ #ifndef CBMROOT_V0_ANALYSIS_PWGC2F_FEMTOSCOPY_HAL_HELPERS_IOTEST_H_ #define CBMROOT_V0_ANALYSIS_PWGC2F_FEMTOSCOPY_HAL_HELPERS_IOTEST_H_ #include #include #include #include class TTree; class TBranch; class TChain; class Buggy : public TObject { protected: TChain* fInChain = {nullptr}; virtual Bool_t InitInternal(); public: Buggy(TChain* chain) { fInChain = chain; } Bool_t Init() { InitInternal(); return true; }; virtual void UpdateBranches(); virtual ~Buggy(); ClassDef(Buggy, 1) }; #endif /* CBMROOT_V0_ANALYSIS_PWGC2F_FEMTOSCOPY_HAL_HELPERS_IOTEST_H_ */