removed signed/unsigned warning

This commit is contained in:
Paolo Cignoni 2005-09-16 11:51:23 +00:00
parent 316f8dba50
commit f8aafdd20d
1 changed files with 4 additions and 1 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.10 2005/06/17 00:54:55 cignoni
Corrected small bug in SetRange (H was resized to n instead of n+1)
Revision 1.9 2005/06/14 14:27:00 ganovelli Revision 1.9 2005/06/14 14:27:00 ganovelli
added include of algorithm added include of algorithm
@ -155,7 +158,7 @@ template <class ScalarType>
void Histogram<ScalarType>::FileWrite(const std::string &filename){ void Histogram<ScalarType>::FileWrite(const std::string &filename){
FILE *fp; FILE *fp;
fp=fopen(filename.c_str(),"w"); fp=fopen(filename.c_str(),"w");
for(int i=0;i<H.size();i++) for(unsigned int i=0;i<H.size();i++)
fprintf (fp,"%12.8lf , %12.8lf \n",R[i],double(H[i])/cnt); fprintf (fp,"%12.8lf , %12.8lf \n",R[i],double(H[i])/cnt);
} }