cblume [Mon, 10 Jan 2011 13:29:56 +0000 (13:29 +0000)]
a/ AliTRDCalibTask.cxx .h: one histo more to quantify the event selection if any problem.
b/ AliTRDCalibraVdriftLinear.cxx, .h: the number 1199 of entries has to be avoid with the robust fit from root TLinearFitter...otherwise it breaks...
c/ AliTRDPreprocessorOffline.cxx .h: I modify a bit the first implementation of Julian for the condition to mask or not (no entries OR gain above 15 rms away of mean gain over the chambers OR vdrift above 15 rms away of the mean vdrift over the chambers). I added some basic functions to produce automaticely in pass0 a chamber status. This can still change a bit...
d/ AliTRDCalDet.cxx .h: I introduce the robust rms used in c/. This removes the chambers very far away due to small anode voltages to have a more realistic rms.
dainese [Mon, 10 Jan 2011 13:13:24 +0000 (13:13 +0000)]
New task on ESDs to monitor the normalization info (Davide)
dainese [Mon, 10 Jan 2011 13:00:29 +0000 (13:00 +0000)]
Updated D* systematic errors (A. Grelli)
esicking [Mon, 10 Jan 2011 12:39:46 +0000 (12:39 +0000)]
1. Corrections in AOD_MC loop. 2. New plots for tracks which are used in analysis excluding seeds
morsch [Mon, 10 Jan 2011 12:12:27 +0000 (12:12 +0000)]
Getter for external MC added.
morsch [Mon, 10 Jan 2011 12:05:28 +0000 (12:05 +0000)]
Some methods for decay parameters added.
pavlinov [Sun, 9 Jan 2011 18:47:02 +0000 (18:47 +0000)]
Added new methods
aszostak [Fri, 7 Jan 2011 20:09:20 +0000 (20:09 +0000)]
Getting rid of warnings about unhandled HLT data blocks.
aszostak [Fri, 7 Jan 2011 19:55:36 +0000 (19:55 +0000)]
Adding simple handler for ignoring data blocks.
cvetan [Fri, 7 Jan 2011 15:50:27 +0000 (15:50 +0000)]
Wrong forward declaration.
hristov [Fri, 7 Jan 2011 14:42:17 +0000 (14:42 +0000)]
Delete property svn:mergeinfo to avoid problems in the merging
agheata [Fri, 7 Jan 2011 13:19:47 +0000 (13:19 +0000)]
.stat file added in the correct place in the jdl
prino [Fri, 7 Jan 2011 12:52:36 +0000 (12:52 +0000)]
New plots in macro for trending SDD QA-train output (F. Prino)
gconesab [Fri, 7 Jan 2011 10:58:12 +0000 (10:58 +0000)]
simple macro to print objects stored in alignment ocdb
hristov [Fri, 7 Jan 2011 10:58:01 +0000 (10:58 +0000)]
Using EMCAL_COMPLETEV1 (Gustavo)
gconesab [Fri, 7 Jan 2011 10:50:37 +0000 (10:50 +0000)]
remove assert to avoid abort in reconstruction of raw simulations generated with more SM than default
hdalsgaa [Fri, 7 Jan 2011 10:38:54 +0000 (10:38 +0000)]
small fix to the merging efficiency on or off
snelling [Fri, 7 Jan 2011 10:38:44 +0000 (10:38 +0000)]
TOF recalibration now in tender
pchrist [Fri, 7 Jan 2011 09:27:55 +0000 (09:27 +0000)]
SUMMARY :
Preparation of the p+p 7 TeV analyses.
---------------------------
1. CheckCascade :
* Trigger Selection :
introduction of TString fTriggerMaskType = type of trigger to use in UserExec : AliVEvent::kMB or kHighMult ?
Note : default = event is selected in the task
* Pile-up :
introduction of Bool_t fkRejectEventPileUp = kTRUE to enable the rejection of events tagged as pile-up by SPD (AliESDEvent::IsPileupFromSPD)
+ control plot : TH1F fHistCascadeMultiplicityForTrigEvtNonPiledUpAndZprimVtx
* Primary tracks & Multiplicity bins :
nTrackPrimaryMultiplicity = fESDtrackCuts->CountAcceptedTracks(lESDevent)
TH1F fHistPrimaryTrackMultiplicityForTrigEvt,
TH1F fHistPrimaryTrackMultiplicityForCascadeEvt
* Armenteros plot :
Fix following Lee Barnby's suggestion : f2dHistArmenteros->Fill( lChargeXi*lAlphaXi, lPtArmXi );
* c.Tau :
TH1F fHistcTauXiMinus to check (x4), filled with cascade candidates : Mpdg +- 10 MeV/c2 ~ Mpdg +- 5sigma
* TPC PID :
introduction of a new set of param. for the TPC PID (Aleph param.) for LHC10d p+p Pass2.
= feature of the "one pad cluster" reconstruction in TPC.
Bool_t fkIsDataRecoWith1PadTPCCluster = switch from one case to the other
Almost official, got from A.Kalweit
fAlephParameters[0] = 1.28949/50.;
fAlephParameters[1] = 2.74095e+01;
fAlephParameters[2] = TMath::Exp(-3.21763e+01);
fAlephParameters[3] = 2.44026;
fAlephParameters[4] = 6.58800;
Logically, the same problem holds for the recent MC prod (LHC10fa6) : a new parameterization will also be needed for MC ...
Home made param. (temporary)
fAlephParameters[0] = 0.04;
fAlephParameters[1] = 17.5;
fAlephParameters[2] = 3.4e-09;
fAlephParameters[3] = 2.15;
fAlephParameters[4] = 3.91720e+00;
* Angular correlation :
- retain only primary tracks (use of AliESDtrackCuts)
- option to exclude cascade whose pt < ... GeV/c
- introduction of 3 options to follow for the correlations:
1.1 - "TrigAnyCasc-AssoAnyPrim"
1.2 - "TrigCascLeading-AssoAnyPrim"
2. - "TrigLeadingTrck-AssoCasc" (= default)
TString fAngularCorrelationType = data member used for the option switch
2. macros/AddTaskCheckCascade
* taskcheckcascade-> SetTriggerMaskType ("kMB");
* taskcheckcascade-> SetRejectEventPileUp (kTRUE);
* taskcheckcascade-> SetAlephParamFor1PadTPCCluster(kTRUE);
* taskcheckcascade-> SetAngularCorrelationType ("TrigLeadingTrck-AssoCasc");
3. CheckPerformance
* Trigger Selection :
introduction of TString fTriggerMaskType = type of trigger to use in UserExec : AliVEvent::kMB or kHighMult ?
Note : default = event is selected in the task
* Pile-up :
introduction of Bool_t fkRejectEventPileUp = kTRUE to enable the rejection of events tagged as pile-up by SPD (AliESDEvent::IsPileupFromSPD)
+ control plot : TH1F fHistCascadeMultiplicityForTrigEvtNonPiledUpAndZprimVtx
* Primary tracks & Multiplicity bins :
nTrackPrimaryMultiplicity = fESDtrackCuts->CountAcceptedTracks(lESDevent)
TH1F fHistMCTrackMultiplicity is now filled with AliStack::GetNprimary()
* Resolution of the phi angle :
TH2F DeltaPhi(MC casc,Reco casc) vs Pt(mc) (azimuthal correlation ...) x4
* Resolution of multiplicity estimator :
TH2F f2dHistRecoMultVsMCMult : Reco prim tracks Vs MC gen. primaries (eta<0.8)
* TPC PID :
introduction of a new set of param. for the TPC PID (Aleph param.) for LHC10f6a prod = MC for LHC10d Pass2.
= feature of the "one pad cluster" reconstruction in TPC.
Home made param. (temporary)
fAlephParameters[0] = 0.04;
fAlephParameters[1] = 17.5;
fAlephParameters[2] = 3.4e-09;
fAlephParameters[3] = 2.15;
fAlephParameters[4] = 3.91720e+00;
4. macros/AddTaskCheckPerformanceCascade
* taskCheckPerfCascade-> SetTriggerMaskType ("kMB");
* taskCheckPerfCascade-> SetRejectEventPileUp (kTRUE);
* taskCheckPerfCascade-> SetAlephParamFor1PadTPCCluster(kTRUE);
esicking [Thu, 6 Jan 2011 17:22:37 +0000 (17:22 +0000)]
new functions, mc analysis can be performed also for pi0 and k0. eta of seed can be restricted to inner acceptance range in order to get whole cone in normal acceptance
morsch [Thu, 6 Jan 2011 16:34:35 +0000 (16:34 +0000)]
Additional histograms
Marek Chojnacki <Marek.Chojnacki@cern.ch>
gconesab [Thu, 6 Jan 2011 16:07:08 +0000 (16:07 +0000)]
Some minor coverity corrections
cvetan [Thu, 6 Jan 2011 16:02:02 +0000 (16:02 +0000)]
Missing forward declaration, apparently it is visible only with gcc 4.5.
cholm [Thu, 6 Jan 2011 15:44:08 +0000 (15:44 +0000)]
Fixed a stupid bug
agheata [Thu, 6 Jan 2011 14:25:27 +0000 (14:25 +0000)]
Moved vertex cuts outside the track loop (A.Palaha)
cholm [Thu, 6 Jan 2011 11:44:40 +0000 (11:44 +0000)]
Added ROOT THtml docs to .cxx and top .h
agheata [Thu, 6 Jan 2011 11:17:06 +0000 (11:17 +0000)]
Added method mgr->AddStatisticsTask(offlineMask) that allows to configure the statistics task with a given offline mask (from AliVEvent)
laphecet [Thu, 6 Jan 2011 10:39:06 +0000 (10:39 +0000)]
Forgot to implement one declared method
pavlinov [Wed, 5 Jan 2011 17:33:21 +0000 (17:33 +0000)]
minor corrections
andronic [Wed, 5 Jan 2011 17:16:37 +0000 (17:16 +0000)]
committing on behalf of Silvia... new macros for HFE analysis on the train (Markus
Fasel); all macros now relocated in their new directory.
laphecet [Wed, 5 Jan 2011 16:50:03 +0000 (16:50 +0000)]
Small update to distinguish, in the HV plot, channels which are OFF, from channels which tripped during the run (those are set to a value of -1) (Laurent)
laphecet [Wed, 5 Jan 2011 16:46:45 +0000 (16:46 +0000)]
To finally (!) be able to cut on HV values, a method AliMUONCalibrationData::PatchHVValues was added,
which will remove extraneous HV values (read from OCDB) in the cases where
the ramp-down was started before the end of run
At the same time, AliMUONRecoParam was updated to a) remove the high limit on HV (not likely to be
ever used) b) have one HV (low) limit per chamber, instead of just St12 vs St345, so we have a finer
control.
(Laurent)
snelling [Wed, 5 Jan 2011 16:39:03 +0000 (16:39 +0000)]
updated LYZ code for merging
decaro [Wed, 5 Jan 2011 14:52:47 +0000 (14:52 +0000)]
MRPC detection efficiency: updated according to the real data analysis (F.Noferini)
gconesab [Wed, 5 Jan 2011 14:08:42 +0000 (14:08 +0000)]
Recover the list of EMCAL clusters in a different outout branch
morsch [Wed, 5 Jan 2011 14:06:49 +0000 (14:06 +0000)]
Information for TOF resolution added.
Davide Caffarri <davide.caffarri@pd.infn.it>
Pietro Antonioli <pietro.antonioli@bo.infn.it>, Andrea Dainese <andrea.dainese@pd.infn.it>
gconesab [Wed, 5 Jan 2011 14:06:12 +0000 (14:06 +0000)]
new task for reclusterization in EMCAL
gconesab [Wed, 5 Jan 2011 14:05:48 +0000 (14:05 +0000)]
new task for reclusterization in EMCAL
masera [Wed, 5 Jan 2011 13:40:48 +0000 (13:40 +0000)]
Changes to the Improve method (J. Belikov) Savannah bug 76361
gconesab [Wed, 5 Jan 2011 12:09:21 +0000 (12:09 +0000)]
Modifications to allow reclusterization during analysis
cholm [Wed, 5 Jan 2011 11:45:29 +0000 (11:45 +0000)]
Added
cholm [Wed, 5 Jan 2011 11:45:14 +0000 (11:45 +0000)]
New classes added
cholm [Wed, 5 Jan 2011 11:37:09 +0000 (11:37 +0000)]
Updates
cholm [Wed, 5 Jan 2011 11:36:20 +0000 (11:36 +0000)]
Script to draw energy loss fits directly from output of the ELossFitter task
cholm [Wed, 5 Jan 2011 11:35:38 +0000 (11:35 +0000)]
Also search sub-directories for ESD files
cholm [Wed, 5 Jan 2011 11:34:50 +0000 (11:34 +0000)]
Updates to MC density calculator
cholm [Wed, 5 Jan 2011 11:34:21 +0000 (11:34 +0000)]
MC sharing sub-algorithm
cholm [Wed, 5 Jan 2011 11:33:54 +0000 (11:33 +0000)]
MC corrections sub-algorithm
cholm [Wed, 5 Jan 2011 11:33:32 +0000 (11:33 +0000)]
Doc fixes
cholm [Wed, 5 Jan 2011 11:33:14 +0000 (11:33 +0000)]
Doc fixes
cholm [Wed, 5 Jan 2011 11:32:46 +0000 (11:32 +0000)]
Use base class
cholm [Wed, 5 Jan 2011 11:32:14 +0000 (11:32 +0000)]
Fixes
cholm [Wed, 5 Jan 2011 11:31:53 +0000 (11:31 +0000)]
New base class for multiplicity tasks
cholm [Wed, 5 Jan 2011 11:31:26 +0000 (11:31 +0000)]
Added MC master task
cholm [Wed, 5 Jan 2011 11:30:44 +0000 (11:30 +0000)]
Minor fixes
cholm [Wed, 5 Jan 2011 11:30:05 +0000 (11:30 +0000)]
Doc fixes
cholm [Wed, 5 Jan 2011 11:29:33 +0000 (11:29 +0000)]
Renamed
cholm [Wed, 5 Jan 2011 11:29:12 +0000 (11:29 +0000)]
Renamed
cholm [Wed, 5 Jan 2011 11:28:50 +0000 (11:28 +0000)]
Renamed
cholm [Wed, 5 Jan 2011 11:28:20 +0000 (11:28 +0000)]
Doc fixes
cholm [Wed, 5 Jan 2011 11:27:28 +0000 (11:27 +0000)]
Doc fixes
cholm [Wed, 5 Jan 2011 11:27:02 +0000 (11:27 +0000)]
Made some member functions virtual, and clean-up
cholm [Wed, 5 Jan 2011 11:26:35 +0000 (11:26 +0000)]
Made some member functions virtual, and clean-up
cholm [Wed, 5 Jan 2011 11:25:48 +0000 (11:25 +0000)]
Documentation fixes
cholm [Wed, 5 Jan 2011 11:25:29 +0000 (11:25 +0000)]
Allow use for MC data
cholm [Wed, 5 Jan 2011 11:24:50 +0000 (11:24 +0000)]
Removed
cholm [Wed, 5 Jan 2011 11:24:35 +0000 (11:24 +0000)]
Added
cholm [Wed, 5 Jan 2011 11:24:12 +0000 (11:24 +0000)]
Removed
cholm [Wed, 5 Jan 2011 11:23:56 +0000 (11:23 +0000)]
Added
cholm [Wed, 5 Jan 2011 11:22:16 +0000 (11:22 +0000)]
Made member functions virtual
agheata [Wed, 5 Jan 2011 08:45:45 +0000 (08:45 +0000)]
fixed circular dependency for AliAnalysisTaskStat
cnattras [Tue, 4 Jan 2011 20:16:52 +0000 (20:16 +0000)]
fixed minor style violation in AliAnalysisEtCommon.h, minor tweaks to CorrBkgdErrors.C, added macro for determining error from efficiency
morsch [Tue, 4 Jan 2011 17:54:40 +0000 (17:54 +0000)]
svn:ignore updated
morsch [Tue, 4 Jan 2011 17:41:12 +0000 (17:41 +0000)]
Warnings corrected.
effc++ warnings ignored for pythia8 include files
(C. Loizides)
kleinb [Tue, 4 Jan 2011 12:32:11 +0000 (12:32 +0000)]
optional threshold for TPC track constraint
morsch [Tue, 4 Jan 2011 10:41:58 +0000 (10:41 +0000)]
Fix for inproper merging of some components.
(M. Ivanov)
hristov [Tue, 4 Jan 2011 08:28:04 +0000 (08:28 +0000)]
Updated version (Jens)
cnattras [Mon, 3 Jan 2011 23:40:34 +0000 (23:40 +0000)]
fixed a bug in rescaling v0s, cleaning up macro for neutral energy contribution with Levy fits and moving it to the hadEt directory, updating CorrNeutralLevyFit.C so that it can also calculate the correction for the total Et, adding macro for neutral energy correction for simulation, adding macro for background subtraction calculation and error calculation
morsch [Mon, 3 Jan 2011 18:24:18 +0000 (18:24 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 17:56:03 +0000 (17:56 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 17:50:36 +0000 (17:50 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 17:36:46 +0000 (17:36 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 17:35:12 +0000 (17:35 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 16:37:51 +0000 (16:37 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 16:32:24 +0000 (16:32 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 16:31:47 +0000 (16:31 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 16:29:52 +0000 (16:29 +0000)]
AliCentrality instead of AliESDCentrality
kleinb [Mon, 3 Jan 2011 16:18:17 +0000 (16:18 +0000)]
Rewritten spectrum2 task, old running is optional, various minor updates to AddTask and train macros
kleinb [Mon, 3 Jan 2011 16:17:14 +0000 (16:17 +0000)]
New jet matching without limitation on the size of the input list
kleinb [Mon, 3 Jan 2011 16:14:39 +0000 (16:14 +0000)]
Added recalcualtion of rho to background subtraction (Leticia), removed static pointers to avoid the same pointer in different instances
morsch [Mon, 3 Jan 2011 16:04:57 +0000 (16:04 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 16:04:03 +0000 (16:04 +0000)]
AliESDCentrality replaced by AliCentrality
morsch [Mon, 3 Jan 2011 16:02:57 +0000 (16:02 +0000)]
AliCentrality for ESD and AOD analysis
cnattras [Sun, 2 Jan 2011 23:58:44 +0000 (23:58 +0000)]
Macro for determining the correction due to neutral particles using data
cnattras [Fri, 31 Dec 2010 00:25:16 +0000 (00:25 +0000)]
Adding a macro to determine the correction due to neutral particles in simulation
marian [Thu, 30 Dec 2010 10:57:43 +0000 (10:57 +0000)]
Missing protection
(Marian)
cnattras [Thu, 30 Dec 2010 10:16:35 +0000 (10:16 +0000)]
Adding a macro to determine systematic errors on the momentum cut
marian [Wed, 29 Dec 2010 15:08:10 +0000 (15:08 +0000)]
1. Making new distotion maps:
+ static void MakeDistortionMap(THnSparse * his0, TTreeSRedirector *pcstream, const char* hname, Int_t run, Float_t refX, Int_t type);
+ static void MakeDistortionMapCosmic(THnSparse * his0, TTreeSRedirector *pcstream, const char* hname, Int_t run, Float_t refX, Int_t type);
+ static void MakeDistortionMapSector(THnSparse * his0, TTreeSRedirector *pcstream, const char* hname, Int_t run, Int_t type);
2. Modifications for TPC-TPC matching in the MakeDistortionMap
3. Possibility to specify the weights in the composed correction.
(Functionality to benchmark performance of fits)
cnattras [Tue, 28 Dec 2010 22:03:07 +0000 (22:03 +0000)]
Adding some macros to check corrections, implementing PID cross check proposed by Alex
kleinb [Tue, 28 Dec 2010 12:16:26 +0000 (12:16 +0000)]
Changes to read input jet branch from InputEvent, needs to be set in Notify