Changeset 2034 for branches/c08_branch/source/conv_base.cpp
- Timestamp:
- 05/10/08 09:03:02 (6 months ago)
- Files:
-
- 1 modified
-
branches/c08_branch/source/conv_base.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/c08_branch/source/conv_base.cpp
r1822 r2034 6 6 #include "cddefines.h" 7 7 #include "dynamics.h" 8 #include "hydrogenic.h"9 8 #include "trace.h" 10 9 #include "elementnames.h" 10 #include "punch.h" 11 11 #include "phycon.h" 12 12 #include "secondaries.h" … … 1031 1031 return 1; 1032 1032 } 1033 1034 if( punch.lgTraceConvergeBase ) 1035 { 1036 if( iteration > 1 && punch.lgTraceConvergeBaseHash ) 1037 { 1038 static int iter_punch=-1; 1039 if( iteration !=iter_punch ) 1040 fprintf( punch.ipDRout, "%s\n",punch.chHashString ); 1041 iter_punch = iteration; 1042 } 1043 1044 fprintf( punch.ipTraceConvergeBase, 1045 "%li\t%.4e\t%.4e\t%.4e\n", 1046 nzone , thermal.htot , thermal.ctot , dense.eden ); 1047 } 1048 1033 1049 return 0; 1034 1050 }
