ROOT logo
//////////////////////////////////////////////////////////////////////////////
//
// $Id: $
//
//*-- Author  : RICH team member
//*-- Revised : Martin Jurkovic <martin.jurkovic@ph.tum.de> 2010
//
//_HADES_CLASS_DESCRIPTION
//////////////////////////////////////////////////////////////////////////////
//
//  HRichLabel
//
//
//////////////////////////////////////////////////////////////////////////////


#ifndef HRICHLABEL_H
#define HRICHLABEL_H

#include "TObject.h"

class HRichLabel: public TObject {

public:

   Char_t iLeftX;
   Char_t iRightX;
   Char_t iLowerY;
   Char_t iUpperY;

   Int_t iSignature;
   Int_t iFiredPadsNr;
   Int_t iLabeledPadsNr;
   static Int_t iLabelNr;

   HRichLabel();
   virtual ~HRichLabel() {}

   HRichLabel(const HRichLabel& source);
   HRichLabel& operator=(const HRichLabel& source);

   void Reset();

   ClassDef(HRichLabel, 1)
};


#endif // HRICHLABEL_H

 hrichlabel.h:1
 hrichlabel.h:2
 hrichlabel.h:3
 hrichlabel.h:4
 hrichlabel.h:5
 hrichlabel.h:6
 hrichlabel.h:7
 hrichlabel.h:8
 hrichlabel.h:9
 hrichlabel.h:10
 hrichlabel.h:11
 hrichlabel.h:12
 hrichlabel.h:13
 hrichlabel.h:14
 hrichlabel.h:15
 hrichlabel.h:16
 hrichlabel.h:17
 hrichlabel.h:18
 hrichlabel.h:19
 hrichlabel.h:20
 hrichlabel.h:21
 hrichlabel.h:22
 hrichlabel.h:23
 hrichlabel.h:24
 hrichlabel.h:25
 hrichlabel.h:26
 hrichlabel.h:27
 hrichlabel.h:28
 hrichlabel.h:29
 hrichlabel.h:30
 hrichlabel.h:31
 hrichlabel.h:32
 hrichlabel.h:33
 hrichlabel.h:34
 hrichlabel.h:35
 hrichlabel.h:36
 hrichlabel.h:37
 hrichlabel.h:38
 hrichlabel.h:39
 hrichlabel.h:40
 hrichlabel.h:41
 hrichlabel.h:42
 hrichlabel.h:43
 hrichlabel.h:44
 hrichlabel.h:45
 hrichlabel.h:46
 hrichlabel.h:47
 hrichlabel.h:48
 hrichlabel.h:49