00001 #include "tmb_tree/TMBL3CFTVtx.hpp" 00002 00003 ClassImp(TMBL3CFTVtx) 00004 00005 TMBL3CFTVtx::TMBL3CFTVtx() { 00006 x = -100; 00007 y = -100; 00008 z = -100; 00009 errx = -100; 00010 erry = -100; 00011 errz = -100; 00012 weight = -100; 00013 primary = 0; 00014 toolname = "none"; 00015 } 00016 00017 TMBL3CFTVtx::TMBL3CFTVtx(const TMBL3CFTVtx& l3) : TObject(l3){ 00018 x = l3.x; 00019 y = l3.y; 00020 z = l3.z; 00021 errx = l3.errx; 00022 erry = l3.erry; 00023 errz = l3.errz; 00024 weight = l3.weight; 00025 primary = l3.primary; 00026 toolname = l3.toolname; 00027 }
1.3.4