]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
default parameters are set for the clusterfinder
authorsgorbuno <sgorbuno@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 9 Sep 2011 21:46:02 +0000 (21:46 +0000)
committersgorbuno <sgorbuno@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 9 Sep 2011 21:46:02 +0000 (21:46 +0000)
HLT/TPCLib/HWCFemulator/AliHLTTPCHWCFEmulatorComponent.cxx
HLT/TPCLib/HWCFemulator/AliHLTTPCHWCFMergerUnit.cxx
HLT/TPCLib/HWCFemulator/AliHLTTPCHWCFProcessorUnit.cxx
OCDB/HLT/ConfigTPC/TPCHWClusterFinder/Run0_999999999_v0_s5.root [new file with mode: 0644]

index 1b8852272cd380fbf9fe5999e3d62eb6e503ecf7..c1a65ec9381d6f259182b3a24d1d338595dcfa73 100644 (file)
@@ -53,17 +53,17 @@ using namespace std;
 AliHLTTPCHWCFEmulatorComponent::AliHLTTPCHWCFEmulatorComponent()
   :
   AliHLTProcessor(),
-  fDoDeconvTime(1),
-  fDoDeconvPad(1),
-  fDoMC(1),
+  fDoDeconvTime(0),
+  fDoDeconvPad(0),
+  fDoMC(0),
   fDoFlowControl(0),
-  fDoSinglePadSuppression(1),
+  fDoSinglePadSuppression(0),
   fBypassMerger(0),
   fClusterLowerLimit(0),
   fSingleSeqLimit(0),
-  fMergerDistance(3),
-  fUseTimeBinWindow(1),
-  fUseTimeFollow(1),
+  fMergerDistance(0),
+  fUseTimeBinWindow(0),
+  fUseTimeFollow(0),
   fChargeFluctuation(0),
   fDebug(0),
   fCFSupport(),
@@ -81,17 +81,17 @@ AliHLTTPCHWCFEmulatorComponent::AliHLTTPCHWCFEmulatorComponent()
 AliHLTTPCHWCFEmulatorComponent::AliHLTTPCHWCFEmulatorComponent(const AliHLTTPCHWCFEmulatorComponent&)
   :
   AliHLTProcessor(),
-  fDoDeconvTime(1),
-  fDoDeconvPad(1),
-  fDoMC(1),
+  fDoDeconvTime(0),
+  fDoDeconvPad(0),
+  fDoMC(0),
   fDoFlowControl(0),
-  fDoSinglePadSuppression(1),
+  fDoSinglePadSuppression(0),
   fBypassMerger(0),
   fClusterLowerLimit(0),
   fSingleSeqLimit(0),
-  fMergerDistance(3),
-  fUseTimeBinWindow(1),
-  fUseTimeFollow(1),
+  fMergerDistance(0),
+  fUseTimeBinWindow(0),
+  fUseTimeFollow(0),
   fChargeFluctuation(0),
   fDebug(0),
   fCFSupport(),
@@ -208,15 +208,15 @@ void AliHLTTPCHWCFEmulatorComponent::SetDefaultConfiguration()
   // Set default configuration for the FPGA ClusterFinder Emulator component
   // Some parameters can be later overwritten from the OCDB
 
-  fDoDeconvTime = 0;
-  fDoDeconvPad = 0;
-  fDoMC = 1;
+  fDoDeconvTime = 1;
+  fDoDeconvPad = 1;
+  fDoMC = 0;
   fDoFlowControl = 0;
-  fDoSinglePadSuppression = 1;
+  fDoSinglePadSuppression = 0;
   fBypassMerger = 0;
-  fClusterLowerLimit = 0;
+  fClusterLowerLimit = 10;
   fSingleSeqLimit = 0;
-  fMergerDistance = 3;
+  fMergerDistance = 4;
   fUseTimeBinWindow = 1;
   fUseTimeFollow = 1;
   fChargeFluctuation = 0;
index 4023bf01531d5b6dc176987d456c9b08d652885c..e0a0c6428eba57d59538a315104d7a85297fa7be 100644 (file)
@@ -31,8 +31,8 @@
 AliHLTTPCHWCFMergerUnit::AliHLTTPCHWCFMergerUnit()
   :
   fDebug(0),
-  fMatchDistance(3),
-  fMatchTimeFollow(1),
+  fMatchDistance(0),
+  fMatchTimeFollow(0),
   fDeconvolute(0),
   fByPassMerger(0),
   fInput()
@@ -50,8 +50,8 @@ AliHLTTPCHWCFMergerUnit::~AliHLTTPCHWCFMergerUnit()
 AliHLTTPCHWCFMergerUnit::AliHLTTPCHWCFMergerUnit(const AliHLTTPCHWCFMergerUnit&)
   :
   fDebug(0),
-  fMatchDistance(3),
-  fMatchTimeFollow(1),
+  fMatchDistance(0),
+  fMatchTimeFollow(0),
   fDeconvolute(0),
   fByPassMerger(0),
   fInput()
index 624c4029c3654733e6b0aa04291f429cb6bfd648..da1ef1bb081007abe0f96529f512dbe8ca58a9bf 100644 (file)
@@ -37,7 +37,7 @@ AliHLTTPCHWCFProcessorUnit::AliHLTTPCHWCFProcessorUnit()
   fBunchIndex(0),
   fDeconvolute(0),
   fSingleSeqLimit(0),
-  fUseTimeBinWindow(1),
+  fUseTimeBinWindow(0),
   fDebug(0)
 {
   //constructor 
@@ -57,7 +57,7 @@ AliHLTTPCHWCFProcessorUnit::AliHLTTPCHWCFProcessorUnit(const AliHLTTPCHWCFProces
   fBunchIndex(0),
   fDeconvolute(0),
   fSingleSeqLimit(0),
-  fUseTimeBinWindow(1),
+  fUseTimeBinWindow(0),
   fDebug(0)
 {
   // dummy
diff --git a/OCDB/HLT/ConfigTPC/TPCHWClusterFinder/Run0_999999999_v0_s5.root b/OCDB/HLT/ConfigTPC/TPCHWClusterFinder/Run0_999999999_v0_s5.root
new file mode 100644 (file)
index 0000000..db852fa
Binary files /dev/null and b/OCDB/HLT/ConfigTPC/TPCHWClusterFinder/Run0_999999999_v0_s5.root differ