/*
$Log$
+Revision 1.20 2001/11/21 14:47:45 barbera
+Some unuseful print-out commented out
+
Revision 1.19 2001/11/21 10:49:07 barbera
Bug correction suggested by Rene done
// imposition respectively. The authors thank Mariana Bondila to have help
// them to resolve some problems. July-2000
+#include <iostream.h>
#include <fstream.h>
#include <TMath.h>
#include <TBranch.h>
/*
$Log$
+Revision 1.6 2001/10/21 19:07:24 hristov
+Several pointers were set to zero in the default constructors to avoid memory management problems
+
Revision 1.5 2001/01/26 19:57:22 hristov
Major upgrade of AliRoot code
#include "AliComplexCluster.h"
#include "AliTPCClusterFinder.h"
#include <fstream.h>
+#include <iostream.h>
//direction constants possible direction in 8 different sectors
//
Int_t index = his2->GetBin(i+1,j+1);
//AliCell * cell = GetCell(i,j);
//if (cell!=0) cell->SetSignal(his2->GetBinContent(index));
- SetSignal(his2->GetBinContent(index),i,j);
+ SetSignal(static_cast<int>(his2->GetBinContent(index)),i,j);
}
}
/*
$Log$
+Revision 1.11 2000/11/02 07:33:48 kowal2
+Automatic streamer generation.
+
Revision 1.10 2000/07/10 20:57:39 hristov
Update of TPC code and macros by M.Kowalski
//set response parameters
//
SetNResponseMax(kNResponseMax);
- SetResponseThreshold(kResponseThreshold);
+ SetResponseThreshold(static_cast<int>(kResponseThreshold));
}