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 "Stl3Util/ftf/FtfBaseHit.h" 00012 00013 00014 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00015 // 00016 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00017 void FtfBaseHit::print ( ) { print (11) ; } ; 00018 void FtfBaseHit::print ( int point_level ) 00019 { 00020 00021 if ( point_level > 9 ) 00022 printf ( "hit Row x y z\n" ) ; 00023 00024 if ( fmod((float)point_level,10.) > 0 ) 00025 printf ( "%3d %2d %6.2f %6.2f %6.2f \n", 00026 id, row, x, y, z ) ; 00027 }
1.5.9