]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
11 years agoadding BW for 1/pt dNdpt
mfloris [Tue, 10 Jul 2012 10:25:43 +0000 (10:25 +0000)]
adding BW for 1/pt dNdpt

11 years agoFixed up this script
cholm [Tue, 10 Jul 2012 10:19:54 +0000 (10:19 +0000)]
Fixed up this script

11 years agoReduced the number of print-outs from the raw reader. Now, only a summary
cholm [Tue, 10 Jul 2012 10:19:02 +0000 (10:19 +0000)]
Reduced the number of print-outs from the raw reader.  Now, only a summary
is shown at the end of the read.  Optionally, more detailed information
can be gotten by doing AliFMDRawReader::SetVerbose().

11 years agoSuppressed secondary decision ased in reco-time set kMultSec flag (Anton)
shahoian [Tue, 10 Jul 2012 09:18:30 +0000 (09:18 +0000)]
Suppressed secondary decision ased in reco-time set kMultSec flag (Anton)

11 years agoSet Old PID to true for default cuts on data sets time < LHC11h
zconesa [Tue, 10 Jul 2012 08:51:52 +0000 (08:51 +0000)]
Set Old PID to true for default cuts on data sets time < LHC11h

11 years agoNew class for steering D-hadron correlation analysis (Sandro)
prino [Tue, 10 Jul 2012 08:49:05 +0000 (08:49 +0000)]
New class for steering D-hadron correlation analysis (Sandro)

11 years agoincrease class def
kleinb [Tue, 10 Jul 2012 08:48:08 +0000 (08:48 +0000)]
increase class def

11 years agoProtection against abnormal memory occupancy in the global tracking
auras [Mon, 9 Jul 2012 17:19:37 +0000 (17:19 +0000)]
Protection against abnormal memory occupancy in the global tracking

11 years agochanges from mconnors
mcosenti [Mon, 9 Jul 2012 15:20:22 +0000 (15:20 +0000)]
changes from mconnors

11 years ago-user task update (julian)
jbook [Mon, 9 Jul 2012 13:53:37 +0000 (13:53 +0000)]
-user task update (julian)

11 years agoupdate Tasks
cbaumann [Mon, 9 Jul 2012 13:51:46 +0000 (13:51 +0000)]
update Tasks

11 years agoRemove annoying printout (Raoul)
prino [Mon, 9 Jul 2012 13:37:56 +0000 (13:37 +0000)]
Remove annoying printout (Raoul)

11 years agochanges from saiola
mcosenti [Mon, 9 Jul 2012 13:36:32 +0000 (13:36 +0000)]
changes from saiola

11 years agofixing a very nasty bug, and cleaning up
mcosenti [Mon, 9 Jul 2012 13:34:44 +0000 (13:34 +0000)]
fixing a very nasty bug, and cleaning up

11 years agoadditional bug fix from Ionut
cbaumann [Mon, 9 Jul 2012 13:23:47 +0000 (13:23 +0000)]
additional bug fix from Ionut

11 years agoAdd PhiV also to .cxx, update by Ionut
cbaumann [Mon, 9 Jul 2012 13:05:14 +0000 (13:05 +0000)]
Add PhiV also to .cxx, update by Ionut

11 years agoselect good quality high pt tracks via the filterbit
kleinb [Mon, 9 Jul 2012 12:54:34 +0000 (12:54 +0000)]
select good quality high pt tracks via the filterbit

11 years agochanges from fzhou, mconnors and myself
mcosenti [Mon, 9 Jul 2012 12:47:29 +0000 (12:47 +0000)]
changes from fzhou, mconnors and myself

11 years agoNew cut on z of SPD vertex to remove outliers
prino [Mon, 9 Jul 2012 12:45:36 +0000 (12:45 +0000)]
New cut on z of SPD vertex to remove outliers

11 years agoUpadte from Taku
cbaumann [Mon, 9 Jul 2012 12:35:21 +0000 (12:35 +0000)]
Upadte from Taku

11 years agoadditional histos for the rho calculation wrt the leading track in the event.
kleinb [Mon, 9 Jul 2012 12:31:18 +0000 (12:31 +0000)]
additional histos for the rho calculation wrt the leading track in the event.

11 years agotake only good quality tracks as trigger
kleinb [Mon, 9 Jul 2012 12:31:02 +0000 (12:31 +0000)]
take only good quality tracks as trigger

11 years agochanges from saiola
mcosenti [Mon, 9 Jul 2012 11:40:00 +0000 (11:40 +0000)]
changes from saiola

11 years agonew Tasks by Taku
cbaumann [Mon, 9 Jul 2012 11:24:34 +0000 (11:24 +0000)]
new Tasks by Taku

11 years agoadd possibility to reject events with a calorimeter cluster with energy larger than...
gconesab [Mon, 9 Jul 2012 10:35:29 +0000 (10:35 +0000)]
add possibility to reject events with a calorimeter cluster with energy larger than pT hard

11 years agoFixed some compilation problems.
cholm [Mon, 9 Jul 2012 10:32:27 +0000 (10:32 +0000)]
Fixed some compilation problems.
Switch to using TParameter<T> (from TNamed) for storing parameters of the
analysis, as these can be merged.   Previoulsy, we used TNamed objects,
but since these cannot be merged, the stupid file merger writes copies
of every single object to the merged file and thereby slowing down
everything.  It would be good if the merger could be fixed - perhaps by
allowing a plug-in for merging a specific class of objects - e.g.,

  class TObjectMerger
  {
  public:
    virtual TObject* Merge(TObject* existing, TList* list);
    virtual TObject* Merge(TObject* existing, TObject* next);
  };
  TObject*
  TObjectMerger::Merge(TObject* existing, TList* list)
  {
    TMergeInfo info(existing);
    TClass* cl = existing->Class();
    ROOT::MergeFunc_t f = cl->GetMerge();
    if (f)
      f(existing, list, &info);
    return existing;
  }

  TNamedMerger : public TObjectMerger
  {
    TObject* Merge(TObject* e, TList* l)
    {
      TString tit(e->GetTitle());
      TIter next(l);
      TObject* o = 0;
      while ((o = next())) {
       tit.Append(" ");
       tit.Append(o->GetTitle());
      }
      return e;
    }
  }

Some fixes to the train setup to show default values of the options.

11 years agoUpdates to run on the train Ds and Dplus efficiency together (Zaida)
prino [Mon, 9 Jul 2012 09:53:48 +0000 (09:53 +0000)]
Updates to run on the train Ds and Dplus efficiency together (Zaida)

11 years agoTransition to PWG new names scheme
quark [Mon, 9 Jul 2012 09:27:23 +0000 (09:27 +0000)]
Transition to PWG new names scheme

11 years agoUse `test' rather than `[' - portable across SH shells. Added help
cholm [Mon, 9 Jul 2012 07:45:54 +0000 (07:45 +0000)]
Use `test' rather than `[' - portable across SH shells.  Added help
output for the --barrel option - please revisit and update the
description.  There seems to be three modes for this option:

 * <= 0  As before
 * == 1  Do not get ESDs?
 * >  1  Modify the file names to look for.

Please give some indication as to what this option is good for.

11 years agoIn case of missing energy loss fits, the sub-algorithms take the eta axis
cholm [Mon, 9 Jul 2012 07:40:34 +0000 (07:40 +0000)]
In case of missing energy loss fits, the sub-algorithms take the eta axis
from the parent task rather than hard coding default axis directly in the
sub-algorithm tasks.  This mean changing default axis only happens in one
place

11 years agoClean-up of code to conform with the style used
cholm [Mon, 9 Jul 2012 07:29:23 +0000 (07:29 +0000)]
Clean-up of code to conform with the style used

11 years agoPrint-out of high cuts conditional on debug level > 3
cholm [Mon, 9 Jul 2012 07:27:34 +0000 (07:27 +0000)]
Print-out of high cuts conditional on debug level > 3

11 years agoUse TAxis::Set rather than TAxis::operator= for backward compatiblity
cholm [Mon, 9 Jul 2012 07:26:14 +0000 (07:26 +0000)]
Use TAxis::Set rather than TAxis::operator= for backward compatiblity

11 years agoClean-up
cholm [Mon, 9 Jul 2012 07:22:57 +0000 (07:22 +0000)]
Clean-up

11 years agoUse TAxis::Set instead of assignment operator. Backward compatibility
cholm [Mon, 9 Jul 2012 07:20:04 +0000 (07:20 +0000)]
Use TAxis::Set instead of assignment operator.  Backward compatibility

11 years agoFix for #95931: commit in trunk and port to release AliT0TenderSupply
hristov [Mon, 9 Jul 2012 06:15:20 +0000 (06:15 +0000)]
Fix for #95931: commit in trunk and port to release AliT0TenderSupply

11 years agocorrection for centrality
miweber [Mon, 9 Jul 2012 05:06:34 +0000 (05:06 +0000)]
correction for centrality

11 years agoFrom Francesco: Now I pass the MC event handler with a method avoiding to call AliAna...
agheata [Sun, 8 Jul 2012 17:11:53 +0000 (17:11 +0000)]
From Francesco: Now I pass the MC event handler with a method avoiding to call AliAnalysisManager in the AliESDpid class

11 years agomake work the jet events rejection method for AODs
gconesab [Sun, 8 Jul 2012 13:58:02 +0000 (13:58 +0000)]
make work the jet events rejection method for AODs

11 years agoChanges to enable trigger efficiency studies
cnattras [Sat, 7 Jul 2012 17:39:05 +0000 (17:39 +0000)]
Changes to enable trigger efficiency studies

11 years agoSet old ID for 2010 standard cuts
prino [Fri, 6 Jul 2012 23:00:45 +0000 (23:00 +0000)]
Set old ID for 2010 standard cuts

11 years agoUpdating histogram from which to retrieve statistics information for MeanVertex ...
zampolli [Fri, 6 Jul 2012 16:33:20 +0000 (16:33 +0000)]
Updating histogram from which to retrieve statistics information for MeanVertex (following
the outcome of Calibration Meeting on 6 July 2012)

11 years agoDplus cut class updated to go with new default settings for old/new PID
prino [Fri, 6 Jul 2012 14:34:47 +0000 (14:34 +0000)]
Dplus cut class updated to go with new default settings for old/new PID

11 years agoChanges for #95795 Improved error handling in AliSimulation
hristov [Fri, 6 Jul 2012 14:34:40 +0000 (14:34 +0000)]
Changes for #95795 Improved error handling in AliSimulation

11 years agoDefault for PID usage moved to new, i.e. OADB for TPC
prino [Fri, 6 Jul 2012 14:28:16 +0000 (14:28 +0000)]
Default for PID usage moved to new, i.e. OADB for TPC

11 years ago-updates to reduced events (ionut)
jbook [Fri, 6 Jul 2012 14:26:34 +0000 (14:26 +0000)]
-updates to reduced events (ionut)

11 years agoFixes for #95785 incorrect use of execute_process: compiler version variables wrong...
hristov [Fri, 6 Jul 2012 14:13:38 +0000 (14:13 +0000)]
Fixes for #95785 incorrect use of execute_process: compiler version variables wrong (M.Kretz)

11 years agoFrom Francesco Noferini: important change in the STEER and ANALYSIS dir that allows...
agheata [Fri, 6 Jul 2012 13:59:16 +0000 (13:59 +0000)]
From Francesco Noferini: important change in the STEER and ANALYSIS dir that allows during the analysis to adjust the MC dE/dx tuned on the data

11 years agoAn additional label
belikov [Fri, 6 Jul 2012 13:23:05 +0000 (13:23 +0000)]
An additional label

11 years agoremove obsolate functinality
jotwinow [Fri, 6 Jul 2012 13:13:36 +0000 (13:13 +0000)]
remove obsolate functinality

11 years agoupdates from Dousatsu
kleinb [Fri, 6 Jul 2012 11:36:01 +0000 (11:36 +0000)]
updates from Dousatsu

11 years agoaccepted runs list can take weight per run
shahoian [Fri, 6 Jul 2012 09:52:18 +0000 (09:52 +0000)]
accepted runs list can take weight per run

11 years agoChange for #95756: put Vc package to aliroot
hristov [Fri, 6 Jul 2012 09:21:41 +0000 (09:21 +0000)]
Change for #95756: put Vc package to aliroot

11 years agoAdding Luke's signal extraction systematics
belikov [Fri, 6 Jul 2012 09:17:12 +0000 (09:17 +0000)]
Adding Luke's signal extraction systematics

11 years agoFixes for #95580 Problem with trigger selection in Raw Reco
hristov [Fri, 6 Jul 2012 09:14:32 +0000 (09:14 +0000)]
Fixes for #95580 Problem with trigger selection in Raw Reco

11 years agofix for compilation of Vc on Mac ( https://savannah.cern.ch/bugs/?95756 )
sgorbuno [Fri, 6 Jul 2012 09:09:33 +0000 (09:09 +0000)]
fix for compilation of Vc on Mac ( https://savannah.cern.ch/bugs/?95756 )

11 years agoFix for PAR file compilation (Gerri)
hristov [Fri, 6 Jul 2012 08:23:03 +0000 (08:23 +0000)]
Fix for PAR file compilation (Gerri)

11 years ago- cosmics added
jotwinow [Thu, 5 Jul 2012 21:21:52 +0000 (21:21 +0000)]
- cosmics added
- full vertex info stored
M    dNdPt/AlidNdPtTrackDumpTask.h
M    dNdPt/AlidNdPtTrackDumpTask.cxx
- store all information and cosmics
M    dNdPt/macros/AddTask_jacek_dNdPtTrackDumpTaskPbPb_TPCITS.C

11 years agoupdates from Salvatore
loizides [Thu, 5 Jul 2012 20:16:42 +0000 (20:16 +0000)]
updates from Salvatore

11 years agoupdate from salvatore
loizides [Thu, 5 Jul 2012 19:49:19 +0000 (19:49 +0000)]
update from salvatore

11 years agofix
loizides [Thu, 5 Jul 2012 19:44:34 +0000 (19:44 +0000)]
fix

11 years agochanges from saiola
mcosenti [Thu, 5 Jul 2012 16:31:46 +0000 (16:31 +0000)]
changes from saiola

11 years agoAdd new online gain tables
cblume [Thu, 5 Jul 2012 15:57:18 +0000 (15:57 +0000)]
Add new online gain tables

11 years agoAdd new online gain tables
cblume [Thu, 5 Jul 2012 15:48:38 +0000 (15:48 +0000)]
Add new online gain tables

11 years agoStore the TParticle UniqueID (AKA MCProcess Code) in the AODMCParticle, add flags...
kleinb [Thu, 5 Jul 2012 15:23:35 +0000 (15:23 +0000)]
Store the TParticle UniqueID (AKA MCProcess Code) in the AODMCParticle, add flags for secondary from weak decay and from conversion

11 years agoD00 cuts in 1-2 + small updates in charm fraction task (AndreaR)
prino [Thu, 5 Jul 2012 14:16:07 +0000 (14:16 +0000)]
D00 cuts in 1-2 + small updates in charm fraction task (AndreaR)

11 years agobug fix
kleinb [Thu, 5 Jul 2012 14:14:18 +0000 (14:14 +0000)]
bug fix

11 years agoupdates for train running (M. Verweij, L. Cunqueiro)
kleinb [Thu, 5 Jul 2012 13:57:36 +0000 (13:57 +0000)]
updates for train running (M. Verweij, L. Cunqueiro)

11 years agoupdate macros to use new mass calculation
cbaumann [Thu, 5 Jul 2012 13:49:04 +0000 (13:49 +0000)]
update macros to use new mass calculation

11 years agoadditional protection
zampolli [Thu, 5 Jul 2012 13:18:07 +0000 (13:18 +0000)]
additional protection

11 years agoFined centrality binnin in 10-60% centrality (Davide)
prino [Thu, 5 Jul 2012 13:14:16 +0000 (13:14 +0000)]
Fined centrality binnin in 10-60% centrality (Davide)

11 years agoSteering macros and scripts: updated and merged with alien versions (after testing...
zampolli [Thu, 5 Jul 2012 13:00:36 +0000 (13:00 +0000)]
Steering macros and scripts: updated and merged with alien versions (after testing on alien).
Removed obsolete directory and old QA macros.
Added new QA macro.
Chiara & Mikolaj

11 years ago-updates marcel
jbook [Thu, 5 Jul 2012 12:57:46 +0000 (12:57 +0000)]
-updates marcel

11 years ago-its trk cut (julian)
jbook [Thu, 5 Jul 2012 12:56:52 +0000 (12:56 +0000)]
-its trk cut (julian)
-option for different pair calculation (christoph)

11 years agochanges from saiola
mcosenti [Thu, 5 Jul 2012 12:56:05 +0000 (12:56 +0000)]
changes from saiola

11 years ago-updates (julian)
jbook [Thu, 5 Jul 2012 12:55:43 +0000 (12:55 +0000)]
-updates (julian)

11 years agoput calculation out of the loop
kleinb [Thu, 5 Jul 2012 12:53:05 +0000 (12:53 +0000)]
put calculation out of the loop

11 years agoTPC event task updated
ssakai [Thu, 5 Jul 2012 12:51:03 +0000 (12:51 +0000)]
TPC event task updated

11 years agochanges from mconnors
mcosenti [Thu, 5 Jul 2012 12:30:14 +0000 (12:30 +0000)]
changes from mconnors

11 years agoadded some histo to cross check
ssakai [Thu, 5 Jul 2012 11:57:19 +0000 (11:57 +0000)]
added some histo to cross check

11 years agoAdding rho's depenence on trigger track (M. Verweij)
kleinb [Thu, 5 Jul 2012 11:27:40 +0000 (11:27 +0000)]
Adding rho's depenence on trigger track (M. Verweij)

11 years agoFix bug in m*L/p calculation introduced by one of the latest commits.
ddobrigk [Thu, 5 Jul 2012 08:39:04 +0000 (08:39 +0000)]
Fix bug in m*L/p calculation introduced by one of the latest commits.

11 years agoMacro to compure Raa (Zaida)
prino [Wed, 4 Jul 2012 22:42:50 +0000 (22:42 +0000)]
Macro to compure Raa (Zaida)

11 years agoCorrection
morsch [Wed, 4 Jul 2012 22:01:57 +0000 (22:01 +0000)]
Correction
Fiorella Fionda <Fiorella.Fionda@cern.ch>

11 years agoImportant bug fixes
morsch [Wed, 4 Jul 2012 21:07:40 +0000 (21:07 +0000)]
Important bug fixes
Daniel Lohner

11 years agoselect on trigger class if wanted
loizides [Wed, 4 Jul 2012 19:55:05 +0000 (19:55 +0000)]
select on trigger class if wanted

11 years agoupdate from salvatore
loizides [Wed, 4 Jul 2012 19:43:33 +0000 (19:43 +0000)]
update from salvatore

11 years agoupdate from salvatore
loizides [Wed, 4 Jul 2012 19:43:14 +0000 (19:43 +0000)]
update from salvatore

11 years agoupdate from salvatore
loizides [Wed, 4 Jul 2012 19:42:47 +0000 (19:42 +0000)]
update from salvatore

11 years agoModifications to keep track of run number, event number, for potential event-by-event...
ddobrigk [Wed, 4 Jul 2012 19:40:00 +0000 (19:40 +0000)]
Modifications to keep track of run number, event number, for potential event-by-event look at strangeness production.

11 years agoCommitted additional histograms with particle creation radius with respect to primary...
ddobrigk [Wed, 4 Jul 2012 17:07:05 +0000 (17:07 +0000)]
Committed additional histograms with particle creation radius with respect to primary vertex criterion. Changed V0CreationRadius variable to hold the creation radius with respect to perfect MC PV.

11 years agoLittle bug fix (Massimo Masera)
belikov [Wed, 4 Jul 2012 17:01:11 +0000 (17:01 +0000)]
Little bug fix (Massimo Masera)

11 years agoAdd reading and saving of normalization counter for Dplus + fix + treatment of suffix...
prino [Wed, 4 Jul 2012 16:45:31 +0000 (16:45 +0000)]
Add reading and saving of normalization counter for Dplus + fix + treatment of suffix in tlist names (Francesco, Elena)

11 years ago- come back to number of find over findable clusters
jotwinow [Wed, 4 Jul 2012 15:58:35 +0000 (15:58 +0000)]
- come back to number of find over findable clusters
- proper ranges for MIPs

11 years agoAdd suffix name to allow to run on the lego train on more than 1 wagon (Renu)
prino [Wed, 4 Jul 2012 15:25:27 +0000 (15:25 +0000)]
Add suffix name to allow to run on the lego train on more than 1 wagon (Renu)

11 years ago readable GetStatus implemented
alla [Wed, 4 Jul 2012 14:53:53 +0000 (14:53 +0000)]
 readable GetStatus implemented

11 years agosmall bug fix in histogramm adding to TList
simones [Wed, 4 Jul 2012 14:34:02 +0000 (14:34 +0000)]
small bug fix in histogramm adding to TList

11 years agoadded also aod event selection
loizides [Wed, 4 Jul 2012 12:12:32 +0000 (12:12 +0000)]
added also aod event selection

11 years agoincluding tracks for isolation
mcosenti [Wed, 4 Jul 2012 11:35:39 +0000 (11:35 +0000)]
including tracks for isolation

11 years ago- modifications for reduced trees (Ionut)
jbook [Wed, 4 Jul 2012 11:29:00 +0000 (11:29 +0000)]
- modifications for reduced trees (Ionut)