00001 #ifndef EemcTwMask_H
00002 #define EemcTwMask_H
00003
00004 #include <TGraph.h>
00005 #include <TGraphErrors.h>
00006 #include <TPaveText.h>
00007
00008 class EemcTwMask {
00009 public:
00010 EemcTwMask();
00011 ~EemcTwMask();
00012
00013 void clear();
00014
00015 enum {nCr = 6, nCh = 120, nPhi = 60, nEta = 12};
00016 Char_t crCh[nCr][nCh];
00017 TGraph crG[nCr], phiG;
00018 TGraphErrors crG2[nCr];
00019 TPaveText *txtH;
00020 int nMask;
00021 };
00022
00023 bool useTwMask(const Char_t *fname, EemcTwMask *m);
00024
00025 #endif