morsch [Mon, 10 Dec 2012 15:25:27 +0000 (15:25 +0000)]
TPC cluster cut on AODs
Robert Grajcarek <grajcarek@physi.uni-heidelberg.de>
mcosenti [Mon, 10 Dec 2012 14:58:55 +0000 (14:58 +0000)]
bug fix
fbellini [Mon, 10 Dec 2012 14:45:49 +0000 (14:45 +0000)]
Update for centrality patch flag
mcosenti [Mon, 10 Dec 2012 14:38:27 +0000 (14:38 +0000)]
including histo to count events without reco PV and changes from fzhou
cbaumann [Mon, 10 Dec 2012 14:04:50 +0000 (14:04 +0000)]
Add Mahmut's pp task
fbellini [Mon, 10 Dec 2012 13:58:27 +0000 (13:58 +0000)]
Modified macros for lego_train and K* systematic checks
mchojnac [Mon, 10 Dec 2012 13:31:43 +0000 (13:31 +0000)]
Adding macros needed by the task AliAnalysisTaskSpectraBoth. Also changing the class AliSpectraBothPID to allow use kPIDtype in AddTaskSpectraBoth.
gconesab [Mon, 10 Dec 2012 11:35:18 +0000 (11:35 +0000)]
Change int to long
gconesab [Mon, 10 Dec 2012 11:27:37 +0000 (11:27 +0000)]
compilation warning
cbaumann [Mon, 10 Dec 2012 11:22:17 +0000 (11:22 +0000)]
replace old ESD tasks with more flexible ones
gconesab [Mon, 10 Dec 2012 09:57:03 +0000 (09:57 +0000)]
Add control histograms for time stamp, move histogram filling to separate method in maker, remove some histograms
jgrosseo [Mon, 10 Dec 2012 08:09:16 +0000 (08:09 +0000)]
plotting update
hqvigsta [Mon, 10 Dec 2012 02:17:18 +0000 (02:17 +0000)]
fixed bug, where number of bins for kCentral was incorrect.
hqvigsta [Mon, 10 Dec 2012 02:17:07 +0000 (02:17 +0000)]
updated runlist, now generated using Run Condition Table.
I discovered that the methode i used last time was not complete due to a "feature" of the logbook.
This time the list is created using Alimonitor's Run Condition Table, with one filter:
'*' on phos; this should exclude runs where PHOS is off.
prsnko [Sun, 9 Dec 2012 19:15:02 +0000 (19:15 +0000)]
Updated Calibration and BadMap for LHC11h
dgangadh [Sun, 9 Dec 2012 13:07:49 +0000 (13:07 +0000)]
histogram declaration change for LEGO
gconesab [Sun, 9 Dec 2012 08:23:20 +0000 (08:23 +0000)]
correct previous non intended commit, but leaving some new things
gconesab [Sun, 9 Dec 2012 08:17:48 +0000 (08:17 +0000)]
reduce to 50 MeV cut the print and exclude too low energy clusters
fprino [Sun, 9 Dec 2012 00:02:13 +0000 (00:02 +0000)]
Adapt macro of D meson v2 with event plane to new centrality binning + add syst unc due to different effic in and out plane
pcrochet [Sat, 8 Dec 2012 15:37:58 +0000 (15:37 +0000)]
Fix crash when running the muon QA tasks due to problem in getting the default parameters in OADB (Diego)
pcrochet [Fri, 7 Dec 2012 16:07:45 +0000 (16:07 +0000)]
adding std:: to fix compilation problems on some compilers (Laurent)
mivanov [Fri, 7 Dec 2012 15:31:09 +0000 (15:31 +0000)]
Adding function for joining arbitrary trees
Used e.g to do combined query DAQ, logbook, trigger, QA,calibration
void AliXRDPROOFtoolkit::JoinTreesIndex(const char * outputFile, const char * outputTree, const char *indexName, const char *inputTrees, Int_t debugLevel){
//
// Join together several tree according to the index
//
// Parameters:
// Output:
// outputFile : name of the output file
// outputTree : name of the output Tree
// indexName : name of the branch to be used as an index
// Input:
// inputTrees : decription of the input trees setup
/*
Example usage:
AliXRDPROOFtoolkit::JoinTreesIndex("outAll.root","joinAll","run","1#CPass1#run#tpcQA#TPCCPass1.root+1#VPass1#run#tpcQA#TPCVPass1.root+1#Pass1#run#tpcQA#TPCPass1.root+0#DAQ#run#joinTree#fproductionJoin.root+0#C#run#dcs#OCDBscan.root+0#CE#run#Fits#CEtrend.root");
==>
Combine information form the Cpass1,VPass, and Pass1QA, calibration tree, DAQ information, trigger information
Make a File "outAll.root", with tree "joinAll", index of tree with name "run"
//
// Input tree configuration string:
//
const char *inputTrees="1#CPass1#run#tpcQA#TPCCPass1.root+1#VPass1#run#tpcQA#TPCVPass1.root+1#Pass1#run#tpcQA#TPCPass1.root+0#DAQ#run#joinTree#/home/miranov/test/dbQueries/fproductionJoin.root+0#C#run#dcs#OCDBscan.root+0#CE#run#Fits#CEtrend.root"
Describe 6 trees to be merged (string separated be +):
TObjArray *arrayInput = TString(inputTrees).Tokenize("+");
TObjString = 1#CPass1#run#tpcQA#TPCCPass1.root
TObjString = 1#VPass1#run#tpcQA#TPCVPass1.root
TObjString = 1#Pass1#run#tpcQA#TPCPass1.root
TObjString = 0#DAQ#run#joinTree#/home/miranov/test/dbQueries/fproductionJoin.root
TObjString = 0#C#run#dcs#OCDBscan.root
TObjString = 0#CE#run#Fits#CEtrend.root
//
Each tree is characterize by 5 parameters - separate by #
description="1#CPass1#run#tpcQA#TPCCPass1.root"
TString(description)->Tokenize("#").Print()
Collection name='TObjArray', class='TObjArray', size=16
TObjString = 1 ==> (0/1) index is used
TObjString = CPass1 ==> name of output branch in output tree
TObjString = run ==> name of the index
TObjString = tpcQA ==> name of the input tree in the input file
TObjString = TPCCPass1.root ==> name of the input file
*/
mbombara [Fri, 7 Dec 2012 14:51:45 +0000 (14:51 +0000)]
Changes related to V0 cuts tunning and Pt_trig dependence.
snelling [Fri, 7 Dec 2012 14:50:12 +0000 (14:50 +0000)]
patch on the fly for resonances
hanratty [Fri, 7 Dec 2012 13:18:49 +0000 (13:18 +0000)]
Coverity Fixes
odjuvsla [Fri, 7 Dec 2012 13:17:16 +0000 (13:17 +0000)]
Changing storage of correction functions to fix crash when quitting aliroot.
zampolli [Fri, 7 Dec 2012 11:16:03 +0000 (11:16 +0000)]
Chanign settings for TRD calibration for luminosity dependence (Raphaelle).
mchojnac [Fri, 7 Dec 2012 10:12:55 +0000 (10:12 +0000)]
Adding the code for a spectra task which can run on ESD and AOD files
zampolli [Fri, 7 Dec 2012 09:35:44 +0000 (09:35 +0000)]
Stripping the "0" from the run number (was removed, but we need it in production).
gconesab [Fri, 7 Dec 2012 09:24:18 +0000 (09:24 +0000)]
remove print
fprino [Thu, 6 Dec 2012 21:41:53 +0000 (21:41 +0000)]
New macro to plot SDD occupancy per module/ddl
hqvigsta [Thu, 6 Dec 2012 18:33:04 +0000 (18:33 +0000)]
Revert "removed bad runs for phos, defined by having bad status in logbook."
This reverts commit
7828b290fb94e3f439c7f09c2743f5cdc97f87f2.
hqvigsta [Thu, 6 Dec 2012 18:32:47 +0000 (18:32 +0000)]
Updated QA plot macros with:
- noise in chi2
- parameterisation of sin function.
- RMS
hqvigsta [Thu, 6 Dec 2012 18:32:29 +0000 (18:32 +0000)]
removed bad runs for phos, defined by having bad status in logbook.
hqvigsta [Thu, 6 Dec 2012 18:31:20 +0000 (18:31 +0000)]
removed runs without PHOS
ddobrigk [Thu, 6 Dec 2012 13:46:12 +0000 (13:46 +0000)]
Changes to optionally disable some track quality cuts
ddobrigk [Thu, 6 Dec 2012 13:37:21 +0000 (13:37 +0000)]
Modifications in addtask to allow for optional release of some track cuts.
ddobrigk [Thu, 6 Dec 2012 13:35:24 +0000 (13:35 +0000)]
Modifications to optionally release some track cuts
loizides [Thu, 6 Dec 2012 13:28:01 +0000 (13:28 +0000)]
from Megan
morsch [Thu, 6 Dec 2012 12:24:31 +0000 (12:24 +0000)]
Code to find the MC header for a given track (itrk < nprimary)
MvL
lmilano [Thu, 6 Dec 2012 11:35:22 +0000 (11:35 +0000)]
Coverity fix 20210
jklein [Thu, 6 Dec 2012 09:33:08 +0000 (09:33 +0000)]
- add class for track matching between GTU tracks and ESD tracks (Felix Rettig)
kleinb [Thu, 6 Dec 2012 08:36:55 +0000 (08:36 +0000)]
cosmetic changes and clean up
kleinb [Thu, 6 Dec 2012 08:33:26 +0000 (08:33 +0000)]
take into account hole in semi-good runs
richterm [Wed, 5 Dec 2012 19:09:14 +0000 (19:09 +0000)]
speedup of cluster decoding by ~60%: more efficient access to data stream and avoiding a reversed copy of the word to be decoded
shahoian [Wed, 5 Dec 2012 17:02:48 +0000 (17:02 +0000)]
reco update
laphecet [Wed, 5 Dec 2012 16:23:09 +0000 (16:23 +0000)]
Disabling a few iMon aliases which currently cause problem to AMANDA
gvolpe [Wed, 5 Dec 2012 15:13:20 +0000 (15:13 +0000)]
minors
rgrosso [Wed, 5 Dec 2012 15:12:32 +0000 (15:12 +0000)]
Aliases which currently encounter an issue in AMANDA are temporarely removed: MchHvLv[Left/Right]/Chamber[06..09][Left/Right]/Slat[10..12].actual.iMon
mcosenti [Wed, 5 Dec 2012 14:57:31 +0000 (14:57 +0000)]
fixing but in filling cells eta and phi when running on MC files
gconesab [Wed, 5 Dec 2012 14:49:35 +0000 (14:49 +0000)]
update in analysis and clusterization sections by Michael and Adam
gvolpe [Wed, 5 Dec 2012 14:21:55 +0000 (14:21 +0000)]
Dependence of AliHMPIDCluster objects on geometry.root file eliminated
morsch [Wed, 5 Dec 2012 13:47:55 +0000 (13:47 +0000)]
bug #99267
hristov [Wed, 5 Dec 2012 13:42:47 +0000 (13:42 +0000)]
Common base class for TRD tracks in ESD and AOD (Jochen)
gconesab [Wed, 5 Dec 2012 13:16:54 +0000 (13:16 +0000)]
put back time cut before putting the cell in digits list
gconesab [Wed, 5 Dec 2012 13:03:09 +0000 (13:03 +0000)]
put back the trick for the cluster time calibration with old AOD where no time stored in cells, add a switch
prsnko [Wed, 5 Dec 2012 11:16:02 +0000 (11:16 +0000)]
Recalibrations for LHC12a,b,c,d pass1 added
pcrochet [Wed, 5 Dec 2012 06:46:25 +0000 (06:46 +0000)]
Plot the sum of mu+ and mu- distributions as well (Diego)
pcrochet [Wed, 5 Dec 2012 06:45:40 +0000 (06:45 +0000)]
Change default pattern to include all triggers of interest for muon (including central and semi-central triggers) (Diego)
pcrochet [Wed, 5 Dec 2012 06:44:36 +0000 (06:44 +0000)]
If default parameters are allowed and runNumber is provided, search first for the latest pass number matching the runNumber specified. If no parameters are defined for the specified runNumber in any pass, use the default parameters of the latest pass available. (Diego)
gconesab [Tue, 4 Dec 2012 19:02:01 +0000 (19:02 +0000)]
track matching update using ITS by Marcel
gconesab [Tue, 4 Dec 2012 18:56:09 +0000 (18:56 +0000)]
add histograms depending on the track type, mainly for hybrids
fprino [Tue, 4 Dec 2012 15:50:10 +0000 (15:50 +0000)]
Possibility to set the number of TPC clusters from ouside (Carlos)
loizides [Tue, 4 Dec 2012 14:07:25 +0000 (14:07 +0000)]
update from megan
mcosenti [Tue, 4 Dec 2012 13:50:18 +0000 (13:50 +0000)]
changing back the number of output containers
hqvigsta [Tue, 4 Dec 2012 13:26:27 +0000 (13:26 +0000)]
changed centrality binning to be trigger specific
rbailhac [Tue, 4 Dec 2012 10:16:58 +0000 (10:16 +0000)]
Further small updates
gvolpe [Tue, 4 Dec 2012 09:01:45 +0000 (09:01 +0000)]
Protections for null pointers added
gconesab [Mon, 3 Dec 2012 21:37:25 +0000 (21:37 +0000)]
remove dependency on AliESDtrackCuts
morsch [Mon, 3 Dec 2012 19:31:56 +0000 (19:31 +0000)]
Possibility to load splines for the p-Pb MC productions
gconesab [Mon, 3 Dec 2012 18:09:07 +0000 (18:09 +0000)]
online QA documentation - Michael
belikov [Mon, 3 Dec 2012 17:59:58 +0000 (17:59 +0000)]
Possibility to run over David's trees on Proof
gconesab [Mon, 3 Dec 2012 17:05:08 +0000 (17:05 +0000)]
do not apply time calibration in MC analysis
jklein [Mon, 3 Dec 2012 14:25:55 +0000 (14:25 +0000)]
HLT TRD on-line track matching and trigger (Felix Rettig, Stefan Kirsch)
- remove AliHLTTRDGlobalMonitorComponent
- replace AliHLTTRDMonitorComponent
- add AliTRDonlineTrackingDataContainer,
AliHLTTRDPreprocessorComponent,
AliHLTTRDTriggerComponent
- register trigger component in AliHLTTriggerAgent
- provide TRD trigger clean-up for electron triggers by
rejecting fake tracks by matching with global tracks
- includes bug fixes for problems in test runs
gconesab [Mon, 3 Dec 2012 13:13:50 +0000 (13:13 +0000)]
Include ITS tracks matching when TPC not available - Marcel
gconesab [Mon, 3 Dec 2012 13:11:16 +0000 (13:11 +0000)]
track matching section completed, Ronrong
gconesab [Mon, 3 Dec 2012 12:51:20 +0000 (12:51 +0000)]
add posibility to accept ESD events depending on time stamp
hristov [Mon, 3 Dec 2012 12:40:44 +0000 (12:40 +0000)]
New parameterization of the dE/dx in the ITS standalone tracks (Leonardo)
rbailhac [Mon, 3 Dec 2012 11:53:31 +0000 (11:53 +0000)]
Bug fix
lmilano [Mon, 3 Dec 2012 11:38:23 +0000 (11:38 +0000)]
Coverity fix 20238 - DeadCode - Qvec distribution was moved to EventCuts class
lmilano [Mon, 3 Dec 2012 11:15:08 +0000 (11:15 +0000)]
Coverity fix 20214
mivanov [Mon, 3 Dec 2012 10:53:57 +0000 (10:53 +0000)]
Modifie the cut on the number of tracks per event
lmilano [Mon, 3 Dec 2012 10:46:20 +0000 (10:46 +0000)]
Coverity fix 20210
lmilano [Mon, 3 Dec 2012 10:43:41 +0000 (10:43 +0000)]
Coverity fix 20211
lmilano [Mon, 3 Dec 2012 10:39:47 +0000 (10:39 +0000)]
Coverity fix 20212
kleinb [Mon, 3 Dec 2012 10:01:28 +0000 (10:01 +0000)]
fixed Warnings
abercuci [Mon, 3 Dec 2012 08:06:55 +0000 (08:06 +0000)]
fix seg fault in summary picture makeing
jgrosseo [Sat, 1 Dec 2012 17:11:24 +0000 (17:11 +0000)]
updated macros
miweber [Sat, 1 Dec 2012 15:37:08 +0000 (15:37 +0000)]
coverity fix
cblume [Sat, 1 Dec 2012 13:12:05 +0000 (13:12 +0000)]
Small update by Raphaelle
miweber [Sat, 1 Dec 2012 11:18:38 +0000 (11:18 +0000)]
Correcting the event mixing correction for 1D balance functions
pcrochet [Fri, 30 Nov 2012 17:27:22 +0000 (17:27 +0000)]
Add trends for OCDB scalers and additional minor fixes (Cynthia and Diego)
mfloris [Fri, 30 Nov 2012 17:24:44 +0000 (17:24 +0000)]
Coverity fix
hristov [Fri, 30 Nov 2012 17:18:49 +0000 (17:18 +0000)]
Matching with a TPC track for clean-up (Jochen)
rbailhac [Fri, 30 Nov 2012 16:48:44 +0000 (16:48 +0000)]
Add classes
rbailhac [Fri, 30 Nov 2012 16:47:58 +0000 (16:47 +0000)]
Update of hfe code
loizides [Fri, 30 Nov 2012 16:10:33 +0000 (16:10 +0000)]
fix warning (thanks Laurent)
fprino [Fri, 30 Nov 2012 13:50:59 +0000 (13:50 +0000)]
Minor modifications to output of D meson v2 macro
fprino [Fri, 30 Nov 2012 13:46:30 +0000 (13:46 +0000)]
Modify name for one of the containers of D+ CF task
lmilano [Fri, 30 Nov 2012 12:53:11 +0000 (12:53 +0000)]
Coverity fix