From 6e09672694247c7e43768b9e16394aae4b952ae9 Mon Sep 17 00:00:00 2001 From: richterm Date: Wed, 2 Nov 2011 12:35:29 +0000 Subject: [PATCH] exclude unnecessary cuts; remove cuts on ITS clusters as those remove all data points (Per Ivar) --- HLT/TPCLib/AliHLTTPCdEdxMonitoringComponent.cxx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/HLT/TPCLib/AliHLTTPCdEdxMonitoringComponent.cxx b/HLT/TPCLib/AliHLTTPCdEdxMonitoringComponent.cxx index 50d3a6570aa..466889c5b1e 100644 --- a/HLT/TPCLib/AliHLTTPCdEdxMonitoringComponent.cxx +++ b/HLT/TPCLib/AliHLTTPCdEdxMonitoringComponent.cxx @@ -4,7 +4,7 @@ //* This file is property of and copyright by the ALICE HLT Project * //* ALICE Experiment at CERN, All rights reserved. * //* * -//* Primary Authors: Per-Ivar Lønne * +//* Primary Authors: Per-Ivar Lønne * //* for The ALICE HLT Project. * //* * //* Permission to use, copy, modify and distribute this software and its * @@ -498,9 +498,13 @@ void AliHLTTPCdEdxMonitoringComponent::SetDefaultConfiguration() //fESDTrackCuts = AliESDtrackCuts::GetStandardITSTPCTrackCuts2010(kTRUE); fESDTrackCuts->SetEtaRange(-0.8,+0.8); fESDTrackCuts->SetPtRange(0.15,1e10); + // 2011-10-28 investigation by Per Ivar and Alexander + // the following cuts are not needed + /* fESDTrackCuts->SetMaxCovDiagonalElements(2, 2, 0.5, 0.5, 2); // BEWARE STANDARD VALUES ARE: 2, 2, 0.5, 0.5, 2 fESDTrackCuts->SetMaxNsigmaToVertex(3); fESDTrackCuts->SetRequireSigmaToVertex(kTRUE); + */ fESDTrackCuts->SetAcceptKinkDaughters(kFALSE); fESDTrackCuts->SetMinNClustersTPC(70); fESDTrackCuts->SetMaxChi2PerClusterTPC(4); @@ -508,8 +512,13 @@ void AliHLTTPCdEdxMonitoringComponent::SetDefaultConfiguration() fESDTrackCuts->SetMaxDCAToVertexZ(3); fESDTrackCuts->SetRequireTPCRefit(kTRUE); //fESDTrackCuts->SetRequireITSRefit(kTRUE); //Kills HLT simulated reconstructions? + // 2011-10-28 investigation by Per Ivar and Alexander + // those cuts remove all data points because the filling is different in the + // HLT, needs further investigation + /* fESDTrackCuts->SetClusterRequirementITS(AliESDtrackCuts::kSPD, AliESDtrackCuts::kAny); //TEMPORARY <-> REMOVE fESDTrackCuts->SetMinNClustersITS(3); + */ } fxbins=300; -- 2.31.1