00001 00006 /*----------------------------------------------------------------------------*/ 00007 /* C Tool Box: Designed and implemented by: */ 00008 /* Walter F.J. Mueller Gesellschaft fuer Schwerionenforschung (GSI) */ 00009 /* Planckstrasse 1, D-64291 Darmstadt, Germany */ 00010 /* Email: W.F.J.Mueller@gsi.de */ 00011 /* WWW: http://www-kp3.gsi.de/www/kp3/people/mueller.html */ 00012 /*------------------------------------------+---------------------------------*/ 00013 00015 00029 template <class T, CTBint DIM1, CTBint DIM2> 00030 CTBprintfMD<T> CTBprintf(const CTBcarray2d<T,DIM1,DIM2>& value, 00031 const char* c_format, int i_width, int i_precision, 00032 CTBint i_pcol, CTBint i_wind) 00033 { 00034 return CTBprintfMD<T>(CTBmatrixCDsc<T>(&value(0,0),DIM1,DIM2), 00035 c_format,i_width,i_precision, i_pcol,i_wind); 00036 }