#ifndef STRESS #define STRESS #include #include #include #include using namespace std; class stressThreads:public TObject{ public: stressThreads(int nThreads, int loopsPerThread_); private: static TThread** threads; static TFile** files; static TTree** trees; static int* thedata; static int** threadInstructions; static int loopsPerThread; static void* loop(void* p); ClassDef(stressThreads,1); }; #endif