static_cast<int> introduced in AliVertex::Draw to prevent a warning
message for the new gcc compiler version.
16 files changed:
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "Ali3Vector.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include "AliSignal.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
* See cxx source for full Copyright notice */
-// $Id: AliEvent.h,v 1.3 2002/04/26 11:23:37 nick Exp $
+// $Id: AliEvent.h,v 1.4 2002/06/25 09:38:28 nick Exp $
-#include <iomanip.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
// $Id$
#include <math.h>
-#include <iostream.h>
+#include "Riostream.h"
#include "Rtypes.h"
if (!tx) continue;
- charge=tx->GetCharge();
+ charge=static_cast<int>(tx->GetCharge());
TPolyLine3D* line=new TPolyLine3D();
fLines->Add(line);
// $Id$
-#include <iostream.h>
+#include "Riostream.h"
#include <math.h>
#include "TObject.h"
In this way possible memory leaks can always be prevented.
Also automatic extrapolation and confidence level calculation of associated
veto hits introduced in AliCalorimeter and AliCalcluster.
+28-oct-2002 NvE "Riostream.h" introduced to replace the standard C++ includes and
+ static_cast<int> introduced in AliVertex::Draw to prevent a warning
+ message for the new gcc compiler version.