Go to the documentation of this file.00001 #ifndef TMem_H
00002 #define TMem_H
00003
00004 #include "TObject.h"
00005 #include<vector>
00006
00007 class TMem: public TObject
00008 {
00009
00010 private:
00011
00012 int _fedid;
00013 std::vector <int> _memFromDcc;
00014
00015 void init(int);
00016
00017 public:
00018
00019
00020
00021 TMem();
00022
00023
00024 TMem(int);
00025
00026
00027 virtual ~TMem();
00028
00029 bool isMemRelevant(int);
00030 int Mem(int, int);
00031
00032
00033 };
00034
00035 #endif