]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
13 years agochanging offline trigger definitions once more:
jgrosseo [Wed, 4 Aug 2010 15:43:46 +0000 (15:43 +0000)]
changing offline trigger definitions once more:
removing NoTRD bit (can be checked by trigger class instead)
All triggers MB, MUON, HighMult use classes without requiring TRD pretrigger

13 years ago- changed from <> to "" for some includes
odjuvsla [Wed, 4 Aug 2010 15:28:56 +0000 (15:28 +0000)]
- changed from <> to "" for some includes

13 years agoModifications and cleanup by Francesco Prino
mfloris [Wed, 4 Aug 2010 15:02:34 +0000 (15:02 +0000)]
Modifications and cleanup by Francesco Prino

13 years agoFrom C.Loizides: Handle manual branch loading if requested by the user (via SetAutoBr...
agheata [Wed, 4 Aug 2010 14:46:36 +0000 (14:46 +0000)]
From C.Loizides: Handle manual branch loading if requested by the user (via SetAutoBranchLoading(kFALSE))
This turns off the usage of TTree::GetEntry, and uses TBranch::GetEntry. It relies on the fact that the user loads
the needed branches in his tasks on demand (via LoadBranch(brname))
This feature is disabled by default, and therefore the current use of the manager targeted at train mode persists.
The purpose is to speed up the analysis in case only a few branches are needed, and if cuts can be made based on quickly loadable information. For example, on my laptop with auto branch loading enabled takes about 8ms/event while with auto branch loading disabled (just loading the header and run info) only 0.8 ms (ie order of magnitude faster). For a more realistic case, with an actual track based analysis attached, a speed up of 2-3 was achieved.

Example:
//________________________________________________________________________
void AliAnalysisTaskPt::UserExec(Option_t *)
{
...
  AliAnalysisManager *am = AliAnalysisManager::GetAnalysisManager();
  am->LoadBranch("AliESDHeader.");
  am->LoadBranch("AliESDRun.");

  /* should have meaningful check here, use dummy just to illustrate example*/
  if (some_condition_on_event_header_or_ESDRun_object) {
    return;
  }
  // We can load the interesting branches:
  am->LoadBranch("Tracks");

  // Track loop to fill a pT spectrum
  printf("There are %d tracks in this event\n", fESD->GetNumberOfTracks());
  ... track loop

13 years agoFixed storing size of singles -> track reference
shahoian [Wed, 4 Aug 2010 13:44:30 +0000 (13:44 +0000)]
Fixed storing size of singles -> track reference

13 years ago- Adding pt histograms for electrons and muons
mfloris [Wed, 4 Aug 2010 13:44:20 +0000 (13:44 +0000)]
- Adding pt histograms for electrons and muons
- Adding pt histogram for "all other" particles, not listed in the enums for id parts
- Adding histogram of species contributing to primaries
- pt histogram now have variable binning, to match yields analysis
- runTaskProof: using the new CAF

13 years agoFixing some warnings and coding conventions
mfloris [Wed, 4 Aug 2010 13:35:51 +0000 (13:35 +0000)]
Fixing some warnings and coding conventions

13 years agoUpdating responsibles (Giacinto de Cataldo added).
zampolli [Wed, 4 Aug 2010 13:08:16 +0000 (13:08 +0000)]
Updating responsibles (Giacinto de Cataldo added).

13 years agoUpdated definition of theta* and corrected a bug in selection of true pairs from MC
pulvir [Wed, 4 Aug 2010 13:07:57 +0000 (13:07 +0000)]
Updated definition of theta* and corrected a bug in selection of true pairs from MC

13 years agoMkdir uses option -p to create directories
agheata [Wed, 4 Aug 2010 12:30:24 +0000 (12:30 +0000)]
Mkdir uses option -p to create directories

13 years ago- the ALTRO mapping is now loaded from OCDB root objects
odjuvsla [Wed, 4 Aug 2010 12:07:20 +0000 (12:07 +0000)]
- the ALTRO mapping is now loaded from OCDB root objects

13 years ago- moving to access mapping from OCDB, not textfiles
odjuvsla [Wed, 4 Aug 2010 12:07:17 +0000 (12:07 +0000)]
- moving to access mapping from OCDB, not textfiles

13 years ago- adding debug messages
odjuvsla [Wed, 4 Aug 2010 12:07:14 +0000 (12:07 +0000)]
- adding debug messages

13 years ago- adding new component to the build system
odjuvsla [Wed, 4 Aug 2010 12:07:10 +0000 (12:07 +0000)]
- adding new component to the build system

13 years ago- changes needed to facilitate for the new clusterizer.
odjuvsla [Wed, 4 Aug 2010 12:07:07 +0000 (12:07 +0000)]
- changes needed to facilitate for the new clusterizer.

13 years ago- adding new component for the new clusterizer.
odjuvsla [Wed, 4 Aug 2010 12:07:04 +0000 (12:07 +0000)]
- adding new component for the new clusterizer.

13 years ago- adding new clusterizer to build system
odjuvsla [Wed, 4 Aug 2010 12:07:00 +0000 (12:07 +0000)]
- adding new clusterizer to build system

13 years ago- adding new clusterizer class. Basic algorithm that uses a NxN matrix centered aroun...
odjuvsla [Wed, 4 Aug 2010 12:06:57 +0000 (12:06 +0000)]
- adding new clusterizer class. Basic algorithm that uses a NxN matrix centered around a local maximum

13 years agoFix for 64 bit constant creating problems on 32 bit systems
shahoian [Wed, 4 Aug 2010 10:32:55 +0000 (10:32 +0000)]
Fix for 64 bit constant creating problems on 32 bit systems

13 years agoComment:
marian [Wed, 4 Aug 2010 08:25:51 +0000 (08:25 +0000)]
Comment:
Missing QA reference file - to close the bug report:
https://savannah.cern.ch/bugs/index.php?69379

Peter Christiansen

13 years agoupdate to MBNoTRD offline trigger class
jgrosseo [Wed, 4 Aug 2010 07:57:55 +0000 (07:57 +0000)]
update to MBNoTRD offline trigger class

13 years agoAdded optional scaling coeff. for cov.matrix (to effectively exclude the point from...
shahoian [Wed, 4 Aug 2010 00:09:00 +0000 (00:09 +0000)]
Added optional scaling coeff. for cov.matrix (to effectively exclude the point from the fit)

13 years agoChanges for report #68914: Improper usage of TClonesArrays in EMCAL
hristov [Tue, 3 Aug 2010 22:49:21 +0000 (22:49 +0000)]
Changes for report #68914: Improper usage of TClonesArrays in EMCAL

13 years agoFix for report #70899 pp min bias Pythia simulation fails with floating point exception
hristov [Tue, 3 Aug 2010 20:49:39 +0000 (20:49 +0000)]
Fix for report #70899 pp min bias Pythia simulation fails with floating point exception

13 years agoadded mc info for strong parity violation calculation
snelling [Tue, 3 Aug 2010 20:15:34 +0000 (20:15 +0000)]
added mc info for strong parity violation calculation

13 years agoadded the fragmentation function task to the train
kleinb [Tue, 3 Aug 2010 19:13:53 +0000 (19:13 +0000)]
added the fragmentation function task to the train

13 years agofixed usage of selection mask and fixed typo in histogram name
kleinb [Tue, 3 Aug 2010 19:06:44 +0000 (19:06 +0000)]
fixed usage of selection mask and fixed typo in histogram name

13 years agoTObjArray ownership assignment
dsilverm [Tue, 3 Aug 2010 13:22:26 +0000 (13:22 +0000)]
TObjArray ownership assignment

13 years ago- Anti nuclei added
morsch [Tue, 3 Aug 2010 12:28:40 +0000 (12:28 +0000)]
- Anti nuclei added
- Corrected charge (e/3 units)

13 years agoProtection added to fix savannah bug #70982
cblume [Tue, 3 Aug 2010 11:57:27 +0000 (11:57 +0000)]
Protection added to fix savannah bug #70982

13 years agoIntroduce proper destructor
cblume [Tue, 3 Aug 2010 11:18:00 +0000 (11:18 +0000)]
Introduce proper destructor

13 years agoAdded the possibility to compute theta* of a pair
pulvir [Tue, 3 Aug 2010 09:03:50 +0000 (09:03 +0000)]
Added the possibility to compute theta* of a pair

13 years agoFix for bug 70942 (P. Hristov)
masera [Tue, 3 Aug 2010 08:33:42 +0000 (08:33 +0000)]
Fix for bug 70942 (P. Hristov)

13 years ago- Added template class for fitting (work in progress).
pulvir [Mon, 2 Aug 2010 20:26:13 +0000 (20:26 +0000)]
- Added template class for fitting (work in progress).
- Updated the 2010 cuts after some comparison tests for bug fixing.
- Added and example macro to run with AliEn plugin
- Corrected some cuts
- Removed a bug in analysis task

13 years agoInvert check for the case that there is no data left in the buffer
cblume [Mon, 2 Aug 2010 19:25:00 +0000 (19:25 +0000)]
Invert check for the case that there is no data left in the buffer

13 years agoUpdating physics selection to support new MB trigger schemes and adding high multipli...
jgrosseo [Mon, 2 Aug 2010 12:59:22 +0000 (12:59 +0000)]
Updating physics selection to support new MB trigger schemes and adding high multiplicity trigger
Supporting now CINT1WU, CMUS1WU, CSH1WU, CINT1, CMUS1, CSH1 triggers
Backward compatible

13 years agoGetting rid of error message in MD5 sum calculation.
aszostak [Mon, 2 Aug 2010 12:11:11 +0000 (12:11 +0000)]
Getting rid of error message in MD5 sum calculation.

13 years agoInstead just bit-flag marking used clusters store ID's of ESDtracks for
shahoian [Mon, 2 Aug 2010 11:58:11 +0000 (11:58 +0000)]
Instead just bit-flag marking used clusters store ID's of ESDtracks for
further analysis of combinatorials

13 years agoAll tasks must post data once for all outputs (AG)
agheata [Mon, 2 Aug 2010 11:47:36 +0000 (11:47 +0000)]
All tasks must post data once for all outputs (AG)

13 years agofix codding violation in AliTRDseedV1 class
abercuci [Mon, 2 Aug 2010 10:01:49 +0000 (10:01 +0000)]
fix codding violation in AliTRDseedV1 class

13 years agofix error during merging (https://savannah.cern.ch/bugs/index.php?70729)
abercuci [Mon, 2 Aug 2010 09:57:56 +0000 (09:57 +0000)]
fix error during merging (https://savannah.cern.ch/bugs/index.php?70729)

13 years agoFixed size of two arrays (R. Shahoyan)
masera [Mon, 2 Aug 2010 09:13:01 +0000 (09:13 +0000)]
Fixed size of two arrays (R. Shahoyan)

13 years agoMake sure that the anchor output file used by CheckMergedFiles is not one among the...
agheata [Mon, 2 Aug 2010 09:06:26 +0000 (09:06 +0000)]
Make sure that the anchor output file used by CheckMergedFiles is not one among the fMergeExcludes.

13 years agoModified action ocut on primary vertex, removed some useless printouts
pulvir [Sun, 1 Aug 2010 16:06:01 +0000 (16:06 +0000)]
Modified action ocut on primary vertex, removed some useless printouts

13 years ago Adding the possibility to filter for events containing a jet above threshold set...
kleinb [Sun, 1 Aug 2010 11:40:43 +0000 (11:40 +0000)]
 Adding the possibility to filter for events containing a jet above threshold set by SetFilterPt

13 years agoinitialise background estimates
kleinb [Sun, 1 Aug 2010 11:38:22 +0000 (11:38 +0000)]
initialise background estimates

13 years agofixed typos in task configuration, reduced number of tasks
kleinb [Sun, 1 Aug 2010 11:36:11 +0000 (11:36 +0000)]
fixed typos in task configuration, reduced number of tasks

13 years agoadded Calo Conv, reduced number of tasks, switched off AOD filling from ESDFilter
kleinb [Sun, 1 Aug 2010 11:34:57 +0000 (11:34 +0000)]
added Calo Conv, reduced number of tasks, switched off AOD filling from ESDFilter

13 years agoreduce/fix number of bins 2D hist
snelling [Sun, 1 Aug 2010 09:36:23 +0000 (09:36 +0000)]
reduce/fix number of bins 2D hist

13 years agoMajor upgrade to the package, in order to speed-up the execution and remove some...
pulvir [Sat, 31 Jul 2010 17:05:47 +0000 (17:05 +0000)]
Major upgrade to the package, in order to speed-up the execution and remove some unnecessary features which complicate too much the preparation of configuration.
Added some new cuts used for current analysis, and some monitor analysis task in order to check some quality cuts to tune them properly.

AliRsnDaughter:
- added a TLorentzVector datamember which will contain all kinematic informations
  (one for default input and another for MC if necessary)
  >> removed most of the kinematic-like getters
  >> access to kinematics of the track through the getter which returns this object
  >> eases a lot the procedure of summing up without errors
  NOTE: now the AliRsnDaughter should be able to deal also with V0s, in order to
        search for *charged* resonances (this is under test, but it is basically implemented)

AliRsnPairParticle --> renamed into AliRsnMother
- added two TLorentzVector which are set from two AliRsnDaughters and two masses
  assigned to them

The AliRsnCutManager (renamed class) has been reviewes as follows:
- removed the slot related to cuts on events, because it is redundant
  if repeated on all AliRsnPair objects, it has been moved at the level
  of the AnalysisManager
- added the possibility to specify some cuts only for the first or second daughter
  so there are three different slots: common (checked for both), first and second (checked for one only)

AliRsnFunctionAxis was renamed as AliRsnValue for meaning reasons.

AliRsn Analysis tasks will contain only one analysis manager,
since the use of them in the train (which should be the default)
stores all outputs into a single file, so there is no reason to have
different analysis manager, which cause confusion when configuring the task.

AliRsnPair becam a virtual base classe for different output systems
the 'old' version which stores histograms is now AliRsnPairFunctions, and works like before.
A new possibility was added to save output as a TNtuple, with the class AliRsnPairNtuple,
which needs to be initialized just defining what values it has to store for each entry,
which are defined using the same class AliRsnValue which is used to create the AliRsnFunctions
which are used as the output for the previous version of this class.
There is the possibility to implement new output formats using this base class.

REMOVED CLASSES:
- AliRsnVManager (not needed any longer)
- AliRsnHistoDef (obsolete, not used since long time)
- AliRsnPairManager (unnecessary step more in configuration)
- AliRsnPIDDefESD (replaced by a dedicated AliRsnCut for PID)
- AliRsnAnalysisTrackEffSE (never used)
- AliRsnCutESDTrigger (better to use AliPhysicsSelection)

13 years agofix for bug #70582 (change from L. Molnar)
gvolpe [Sat, 31 Jul 2010 10:42:18 +0000 (10:42 +0000)]
fix for bug #70582 (change from L. Molnar)

13 years agoAddition to bug report #68837. The CTP timing info is in BC units and not in ns!
cvetan [Fri, 30 Jul 2010 20:36:32 +0000 (20:36 +0000)]
Addition to bug report #68837. The CTP timing info is in BC units and not in ns!

13 years agoadding ITS standalone analysis... with files (F.Prino)
bhippoly [Fri, 30 Jul 2010 18:00:34 +0000 (18:00 +0000)]
adding ITS standalone analysis... with files (F.Prino)

13 years agoadding ITS standalone analysis (F.Prino)
bhippoly [Fri, 30 Jul 2010 17:59:34 +0000 (17:59 +0000)]
adding ITS standalone analysis (F.Prino)

13 years agoUpdated alignment:
marian [Fri, 30 Jul 2010 16:38:35 +0000 (16:38 +0000)]
Updated alignment:

 // make  sector alignment - using Kalman filter method -AliTPCkalmanAlign
  // Combined information is used, mean residuals are minimized:
  //
  // 1. TPC-TPC sector alignment
  // 2. TPC-ITS alignment
  // 3. TPC vertex alignment

13 years agoMemory leak corrected.
morsch [Fri, 30 Jul 2010 16:37:48 +0000 (16:37 +0000)]
Memory leak corrected.

13 years agoadding the test for THnSparse
marian [Fri, 30 Jul 2010 16:31:54 +0000 (16:31 +0000)]
adding the test for THnSparse
(Marian)

13 years agoA few upgrades plus files missing from previous commit
hdalsgaa [Fri, 30 Jul 2010 15:34:59 +0000 (15:34 +0000)]
A few upgrades plus files missing from previous commit

13 years agoChanging default range on x axis of histos
hdalsgaa [Fri, 30 Jul 2010 14:41:56 +0000 (14:41 +0000)]
Changing default range on x axis of histos

13 years agoinput file for PhysDA
alla [Fri, 30 Jul 2010 14:09:37 +0000 (14:09 +0000)]
input file for PhysDA

13 years agoAdded: Workdirectorysize = {"5000MB"}; to generated jdls
agheata [Fri, 30 Jul 2010 13:56:38 +0000 (13:56 +0000)]
Added: Workdirectorysize = {"5000MB"}; to generated jdls

13 years agoFew fixes for staged merging.
agheata [Fri, 30 Jul 2010 13:33:50 +0000 (13:33 +0000)]
Few fixes for staged merging.

13 years agoHigh multiplicity settings
hristov [Fri, 30 Jul 2010 13:05:30 +0000 (13:05 +0000)]
High multiplicity settings

13 years agoAliTRiggerInput: TPC defined as trigger detector
lietava [Fri, 30 Jul 2010 12:02:44 +0000 (12:02 +0000)]
AliTRiggerInput: TPC defined as trigger detector

13 years agoAdding correct usage of Trigger bit from event selection
kleinb [Fri, 30 Jul 2010 11:51:57 +0000 (11:51 +0000)]
Adding correct usage of Trigger bit from event selection

13 years ago- Update to pythia8140
morsch [Fri, 30 Jul 2010 10:39:47 +0000 (10:39 +0000)]
- Update to pythia8140
- Make  independent of TPythia8 for grid tests.

13 years agomemory leak fixed
alla [Fri, 30 Jul 2010 09:56:45 +0000 (09:56 +0000)]
memory leak fixed

13 years agofiexed typo
kleinb [Fri, 30 Jul 2010 07:10:10 +0000 (07:10 +0000)]
fiexed typo

13 years ago(Christian Klein-Boesing) This would allow to enable the population of the AOD by...
agheata [Fri, 30 Jul 2010 06:59:21 +0000 (06:59 +0000)]
(Christian Klein-Boesing) This would allow to enable the population of the AOD by the ESDFilter without activating the writing. By that subsequent tasks can decide wether the standard AOD is filled or not, in case the user wants it.

13 years agomacro to read ESD and to check calibration
alla [Fri, 30 Jul 2010 06:38:40 +0000 (06:38 +0000)]
macro to read ESD and to check calibration

13 years agomacro for set/get T0 OCDB
alla [Fri, 30 Jul 2010 06:36:50 +0000 (06:36 +0000)]
macro for set/get T0 OCDB

13 years agoAdding the background subtraction (Leticia)
kleinb [Fri, 30 Jul 2010 06:03:40 +0000 (06:03 +0000)]
Adding the background subtraction (Leticia)

13 years agoWarnings fixed
mrodrigu [Thu, 29 Jul 2010 18:28:20 +0000 (18:28 +0000)]
Warnings fixed

13 years agoAdditional changes for report #70680 AliROOT Coverity DELETE_ARRAY checker fix
hristov [Thu, 29 Jul 2010 15:46:15 +0000 (15:46 +0000)]
Additional changes for report #70680 AliROOT Coverity DELETE_ARRAY checker fix

13 years agoFixed warning, and added cut.
kaamodt [Thu, 29 Jul 2010 14:43:45 +0000 (14:43 +0000)]
Fixed warning, and added cut.

13 years agoAOD filling follows the new offline trigger schema. The method AliAODHandler::BeginEv...
agheata [Thu, 29 Jul 2010 14:37:29 +0000 (14:37 +0000)]
AOD filling follows the new offline trigger schema. The method AliAODHandler::BeginEvent() resets filling of the AOD for the current event, while the ESD/AOD filters may set it back if the event passes their physics selection mask.
All filters must add to their UserExec mehod lines like:
  // Filters must explicitely enable AOD filling in their UserExec (AG)
  if (!AliAnalysisManager::GetAnalysisManager()->GetOutputEventHandler()) AliFatal("Cannot run ESD filter without an output event handler");
  AliAnalysisManager::GetAnalysisManager()->GetOutputEventHandler()->SetFillAOD(kTRUE);

Note:
Changed the logic of AliAnalysisTaskSE::fOfflineTrigger for backward compatibility: if the task does not set it (stays 0) it means all events are selected. If the mask is non 0 it is AND-ed with the current event mask (as implemented with Jan-Fiete).
Again, if no event selection cuts object (like AliPhysicsSelection) is used at the level of the input handler, all events are now selected.

13 years agoHijing libraries loaded.
morsch [Thu, 29 Jul 2010 13:59:01 +0000 (13:59 +0000)]
Hijing libraries loaded.

13 years agoFix in counting number of jobs to be submitted
agheata [Thu, 29 Jul 2010 13:35:35 +0000 (13:35 +0000)]
Fix in counting number of jobs to be submitted

13 years agoImplemented merging in stages. Instead of submitting one merging job per master,...
agheata [Thu, 29 Jul 2010 13:24:29 +0000 (13:24 +0000)]
Implemented merging in stages. Instead of submitting one merging job per master, the plugin now sends nfiles/nperchunk+1 jobs, each merging a subset of nperchunk files.
The number of files merged in a chunk is the one set via: plugin->SetMaxMergeFiles(nperchunk)
This works only when having the plugin in SetMergeViaJDL() mode. Running the analysis with the plugin in in "terminate" mode will submit merging at stage 1. When the submitted merging jobs are in a final state, the user can rerun in "terminate" mode. This will either resubmit the jobs that failed in the previous stage or just submit jobs for the next stage.
When the current stage fulfills nfiles_for_stage_N <= nperchunk, the final merging job will also run the analysis in "terminate" mode.
The intermediate files are calles: output-Stage%02d_%04d and are NOT cleaned up in the current implementation - the user should do it.
Note: Do NOT run "terminate" mode if existing merging jobs are not yet in a final state, as this will resubmit ALL jobs that have not yet registered their output, even if these are successful.

Run scenario:
1. Analysis via plugin using:
  plugin->SetMergeViaJDL();
  plugin->SetMaxMergeFiles(10);
  plugin->SetRunMode("full")
...
  mgr->StartAnalysis("grid")
This will submit a master job which is split say in 1000 jobs, each producing output1.root, ..., outputN.root

2. All jobs finished (maybe after resubmission) even if some failed (due to corrupted inputs or whatever)
We are left with 980 successful jobs.
  plugin->SetRunMode("terminate")
...
  mgr->StartAnalysis("grid")
This will submit 980/10 meging jobs. The K-th job will produce for the output N the file: output-Stage01_000K.root
Wait until jobs are done, resubmit failing ones -> ALL merging jobs must succeed

3. We have now 98 Stage01 merged files. Redoing step 2 will submit 98/10+1=10 jobs stage 2.
These will produce 10 files outputN-Stage02_000K.root

4. Redoing stage 2 when these jobs finished, the plugin will submit finally a single merging job.
After merging, the job will run the analysis "terminate" phase.

13 years agoSwitch to default raw stream (Jochen)
mfasel [Thu, 29 Jul 2010 12:46:30 +0000 (12:46 +0000)]
Switch to default raw stream (Jochen)

13 years agoMove variable to protected
akisiel [Thu, 29 Jul 2010 11:22:46 +0000 (11:22 +0000)]
Move variable to protected

13 years agoremoved warnings
alla [Thu, 29 Jul 2010 10:49:51 +0000 (10:49 +0000)]
removed warnings

13 years agoWarnings removed (R.Shahoyan)
fca [Thu, 29 Jul 2010 10:47:08 +0000 (10:47 +0000)]
Warnings removed (R.Shahoyan)

13 years agoAdd EMCICs classes
akisiel [Thu, 29 Jul 2010 10:21:02 +0000 (10:21 +0000)]
Add EMCICs classes

13 years agoImprovements in multiplicity determination
akisiel [Thu, 29 Jul 2010 10:00:06 +0000 (10:00 +0000)]
Improvements in multiplicity determination

13 years agoFixing warning
aszostak [Thu, 29 Jul 2010 09:18:45 +0000 (09:18 +0000)]
Fixing warning

13 years agoAdapt to recent changes in EventHandler, consider the trigger mask in the event selection
kleinb [Thu, 29 Jul 2010 09:05:22 +0000 (09:05 +0000)]
Adapt to recent changes in EventHandler, consider the trigger mask in the event selection

13 years agoAliTriggerConfiguration: fix for DTRUE and 5 bcmasks
lietava [Thu, 29 Jul 2010 08:35:54 +0000 (08:35 +0000)]
AliTriggerConfiguration: fix for DTRUE and 5 bcmasks

13 years agoadapt to new bitmask from PhysicsSelection instead of bool
kleinb [Thu, 29 Jul 2010 08:22:47 +0000 (08:22 +0000)]
adapt to new bitmask from PhysicsSelection instead of bool

13 years agoRemoving warnings
fca [Thu, 29 Jul 2010 07:31:00 +0000 (07:31 +0000)]
Removing warnings

13 years agoAdditional protection
hristov [Thu, 29 Jul 2010 06:29:50 +0000 (06:29 +0000)]
Additional protection

13 years agoFixing compilation warnings
masera [Wed, 28 Jul 2010 18:03:14 +0000 (18:03 +0000)]
Fixing compilation warnings

13 years agoswitch to use HLT events and new merging scheema by Michael and Helge
jotwinow [Wed, 28 Jul 2010 17:52:46 +0000 (17:52 +0000)]
switch to use HLT events and new merging scheema by Michael and Helge

13 years agoFixing warnings.
aszostak [Wed, 28 Jul 2010 14:40:55 +0000 (14:40 +0000)]
Fixing warnings.

13 years agoFixing warnings
aszostak [Wed, 28 Jul 2010 14:17:51 +0000 (14:17 +0000)]
Fixing warnings

13 years agoUpdated QA Train steering macros. (M. Gheata)
morsch [Wed, 28 Jul 2010 11:09:49 +0000 (11:09 +0000)]
Updated QA Train steering macros. (M. Gheata)

13 years agoUpdate for extraction of 3D cluster residual maps
marian [Wed, 28 Jul 2010 10:50:58 +0000 (10:50 +0000)]
Update for extraction of 3D cluster residual maps
                  - A lot of code in the AliTPCcaliAlign started to be obsolete
                  - To be cleaned later
+
MakeAlignCalPad.C - for E field distortion in 3D
                  - previously working in 2D
                  - name is obsolete - will be replaced in future

13 years agoadded setters for common ranges histograms
snelling [Wed, 28 Jul 2010 09:43:28 +0000 (09:43 +0000)]
added setters for common ranges histograms

13 years agoHIJING can be loaded as independent library.
morsch [Wed, 28 Jul 2010 08:37:57 +0000 (08:37 +0000)]
HIJING can be loaded as independent library.

13 years agoreconstruction for coming multibunch beams
alla [Wed, 28 Jul 2010 08:06:59 +0000 (08:06 +0000)]
reconstruction for coming multibunch beams