00001 //:>------------------------------------------------------------------ 00002 //: FILE: FtfBaseHit.cxx 00003 //: HISTORY: 00004 //: 1sep1999 ppy first version 00005 //:<------------------------------------------------------------------ 00006 //:>------------------------------------------------------------------ 00007 //: CLASS: FtfBaseHit 00008 //: DESCRIPTION: Functions associated with this class 00009 //: AUTHOR: ppy - Pablo Yepes, yepes@physics.rice.edu 00010 //:>------------------------------------------------------------------ 00011 #include "FtfBaseHit.h" 00012 00013 #include "FtfGeneral.h" 00014 #include "rtsLog.h" 00015 00016 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00017 // 00018 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00019 void FtfBaseHit::print ( ) { print (11) ; } ; 00020 void FtfBaseHit::print ( int point_level ) 00021 { 00022 00023 if ( point_level > 9 ) 00024 LOG(NOTE, "hit Row x y z\n" ) ; 00025 00026 if ( fmod((double)point_level,10.) > 0 ) 00027 LOG(NOTE, "%3d %2d %6.2f %6.2f %6.2f \n", 00028 id, row, x, y, z ) ; 00029 }
1.5.9