00001 #ifndef L2GBLHT_H_ 00002 #define L2GBLHT_H_ 00003 00005 // 00006 // Purpose: This is the header file that defines a class to help fill the 00007 // tuple correctly with L2 global Ht. 00008 // 00009 // Author: Yann Coadou 00010 // Date: 19-Apr-2004 00011 // 00013 00014 #include "tmb_tree/TMBL2GblBase.hpp" 00015 00020 class TMBL2GblHt : public TMBL2GblBase { 00021 public: 00022 TMBL2GblHt(); //constructor 00023 TMBL2GblHt(const TMBL2GblHt&); //copy constructor 00024 00025 ~TMBL2GblHt() {;} //destructor 00026 00027 float Ht() const {return et;} 00028 00029 private: 00030 00031 ClassDef(TMBL2GblHt,1) 00032 00033 }; //end of class TMBL2GblHt 00034 #endif // L2GBLHT_H_
1.3.4