]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
13 years agoAdding new AliTPCExBEffectiveSector class
marian [Mon, 26 Jul 2010 20:16:10 +0000 (20:16 +0000)]
Adding new AliTPCExBEffectiveSector class

Marian

13 years ago// AliTPCExBEffectiveSector class ...
marian [Mon, 26 Jul 2010 20:11:46 +0000 (20:11 +0000)]
// AliTPCExBEffectiveSector class                                                   //
// Correct for the rest of ExB effect which are not covered yet by physical models
//
// Motivation:
//   ExB correction:
//      dr    =  c0* integral(Er/Ez) + c1* integral(Erphi/Ez)
//      drphi = -c1* integral(Er/Ez) + c0* integral(Erphi/Ez)
//   Where:
//   wt = Bz*(k*vdrift/E)           ~ 0.3 at B=0.5 T
//   c0 = 1/(1+T2*T2*wt*wt)
//   c1 = T1*wt/(1+T1*T1*wt*wt)
//
//
//  3 correction maps 0 implemented as histogram used
//  R-Phi correction map obtained minimizing residuals betwee the track
//        and space points (AliTPCcalibAlign class). Track is defined using
//        the points from the refernce plain at the middle of the TPC
//        and vertex
//        Corrected primar tracks straight pointing to the primary vertex
//
//  R distortion - obtained using the cluster residuals in the setup with
//                 plus and minus field
//                 Only high momenta tracks used for this calibration (1 GeV threshold)
//     drphi_plus-drphi_minus=-2*c1 integral(Er/Ez)
//               - Erphi/Ez cancels

Marian

13 years agoMemory leak in Raw2SDigits - Savannah bug 70587
masera [Mon, 26 Jul 2010 16:36:31 +0000 (16:36 +0000)]
Memory leak in Raw2SDigits - Savannah bug 70587

13 years agoFixing Raw2SDigits:
ivana [Mon, 26 Jul 2010 16:19:26 +0000 (16:19 +0000)]
Fixing Raw2SDigits:
- Added loading mapping in AliMUONDigitMaker ctor
- Added treeS->Fill() in AliMUON::Raw2SDigits (the written files were empty)
This fixes the Savannah bug report #70583.

13 years agoRewritten Task for Fragmentation Function, added to compilation of JetTasks module now
kleinb [Mon, 26 Jul 2010 15:50:09 +0000 (15:50 +0000)]
Rewritten Task for Fragmentation Function, added to compilation of JetTasks module now

13 years agoRewritten Task for Fragmentation Function, added to compilation of JetTasks module now
kleinb [Mon, 26 Jul 2010 15:50:00 +0000 (15:50 +0000)]
Rewritten Task for Fragmentation Function, added to compilation of JetTasks module now

13 years agoAdding histograms for smearing normized to p_T,Gen
kleinb [Mon, 26 Jul 2010 15:48:02 +0000 (15:48 +0000)]
Adding histograms for smearing normized to p_T,Gen

13 years agofix for missing header file needed for delete
kleinb [Mon, 26 Jul 2010 15:39:44 +0000 (15:39 +0000)]
fix for missing header file needed for delete

13 years agocompiler warnings
cblume [Mon, 26 Jul 2010 15:38:41 +0000 (15:38 +0000)]
compiler warnings

13 years agoAliFlowCommonHist class: removed hist fHistMultOrig which was not useful, added hists...
snelling [Mon, 26 Jul 2010 15:28:54 +0000 (15:28 +0000)]
AliFlowCommonHist class: removed hist fHistMultOrig which was not useful, added hists of the angle of the Q vectors.
AliFlowAnalysisWithLeeYangZeros.cxx and AliFlowAnalysisWithLYZEventPlane.cxx: reading the number of events from fHistQ in stead of fHistMultOrig.
AliFlowAnalysisWithScalarProduct class: Extra cout in Finish() and some cosmetics.

13 years agocompiler warnings (Jochen)
cblume [Mon, 26 Jul 2010 15:04:08 +0000 (15:04 +0000)]
compiler warnings (Jochen)

13 years agoRemove WriteTracklets from Raw2Digits
cblume [Mon, 26 Jul 2010 13:27:09 +0000 (13:27 +0000)]
Remove WriteTracklets from Raw2Digits

13 years agoIn AliMUONRawWriter:
ivana [Mon, 26 Jul 2010 13:26:30 +0000 (13:26 +0000)]
In AliMUONRawWriter:
Adding loading mapping in ctor; this fixes the Savannah bug #70593.

13 years agoAdded task to combine conversions with calorimeters (Dmitri)
kaamodt [Mon, 26 Jul 2010 12:57:03 +0000 (12:57 +0000)]
Added task to combine conversions with calorimeters (Dmitri)

13 years agoSelectCollisionCandidates added for the task
jotwinow [Mon, 26 Jul 2010 12:10:18 +0000 (12:10 +0000)]
SelectCollisionCandidates added for the task

13 years agoExtending the functionality of the physics selection. Instead of providing a yes...
jgrosseo [Mon, 26 Jul 2010 08:32:02 +0000 (08:32 +0000)]
Extending the functionality of the physics selection. Instead of providing a yes/no decision, it
supports now several concurrent offline trigger selections. At present these are (defined in
AliVEvent.h --> EOfflineTriggerTypes):
1) AliVEvent::kMB: Minimum bias trigger (corresponding to the old behavior), all detectors
2) AliVEvent::kMBNoTRD: Same as kMB, but TRD not read out (this is a separate online trigger
class which became active now)
3) AliVEvent::kMUON: Muon trigger
4) AliVEvent::kHighMult: High-multiplicity trigger
For all those the (usual) offline SPD or V0 selection is performed. The available offline
triggers will be extended when needed.

To use this functionality you call for your task SetCollisionCandidates with a mask, composed
from the above flags. E.g. to select MB and MUON events:
myTask->SetCollisionCandidates(AliVEvent::kMB | AliVEvent::kMUON)
Doing that your task is only called for the requested events.

If in your UserExec you want to look at the decision of the physics selection, you can do that
in the same way as before with
UInt_t mask = fInputHandler->IsEventSelected()
and in mask the bits corresponding to the above offline triggers are set.

The output bit mask of the physics selection is stored in the AOD event header, and therefore
the AOD analysis can work in the same way as ESD analysis. I.e. you can use
myTask->SetCollisionCandidates and fInputHandler->IsEventSelected() in the exact same way.

Andrei & Jan Fiete

13 years agoIntroduced datamember fIsRemote. Used to disable the progress bar when running in...
agheata [Mon, 26 Jul 2010 07:25:08 +0000 (07:25 +0000)]
Introduced datamember fIsRemote. Used to disable the progress bar when running in proof or grid.

13 years agofinish HLT code update (Theo)
cblume [Sun, 25 Jul 2010 20:20:38 +0000 (20:20 +0000)]
finish HLT code update (Theo)

13 years agoCorrection for Savannah bug 70586
coppedis [Sun, 25 Jul 2010 15:32:21 +0000 (15:32 +0000)]
Correction for Savannah bug 70586

13 years agochanges by Simone Schuchmann
jotwinow [Sun, 25 Jul 2010 14:57:06 +0000 (14:57 +0000)]
changes by Simone Schuchmann

13 years agoMake compatible with future changes in root.
mtadel [Sat, 24 Jul 2010 18:35:44 +0000 (18:35 +0000)]
Make compatible with future changes in root.

13 years agoCoding violation fixes (M. van Leeuwen)
belikov [Sat, 24 Jul 2010 10:30:34 +0000 (10:30 +0000)]
Coding violation fixes (M. van Leeuwen)

13 years agoPossibility to select only D0 from B + protections (Zaida), added fiducial acc cut...
dainese [Sat, 24 Jul 2010 02:58:02 +0000 (02:58 +0000)]
Possibility to select only D0 from B + protections (Zaida), added fiducial acc cut (ChiaraZ)

13 years agoadding the D0 trigger component to default the configuration for HLT simulation....
richterm [Fri, 23 Jul 2010 21:56:35 +0000 (21:56 +0000)]
adding the D0 trigger component to default the configuration for HLT simulation. Depending on the availability of simulated raw data the component works on ESDs and MC information (running on digits) or ITS tracks and vertex information (raw data)

13 years agomake generation of monitoring trigger an optional feature
richterm [Fri, 23 Jul 2010 21:52:50 +0000 (21:52 +0000)]
make generation of monitoring trigger an optional feature
- to be switched on by argument '-monitoring'
- introduce an interval of n seconds between monitoring triggers '-monitoring=n'
- send empty block list for not triggered events and events dropped because of the interval

This change will reduce the amount of data sent to the monitoring components, first of all
by sending only sparse triggers (configurable interval) and secondly because of the empty
monitoring filter list for all but the single triggered event per interval.

13 years agocode audit: further cleanup and corrections still necessary; fixing memory leak,...
richterm [Fri, 23 Jul 2010 21:46:35 +0000 (21:46 +0000)]
code audit: further cleanup and corrections still necessary; fixing memory leak, fixing seg fault due to missing vertex information

13 years agoAltroMapping corrected for Raw2SDigits
prsnko [Fri, 23 Jul 2010 19:28:53 +0000 (19:28 +0000)]
AltroMapping corrected for Raw2SDigits

13 years agosimulate simple jet effects
snelling [Fri, 23 Jul 2010 19:19:01 +0000 (19:19 +0000)]
simulate simple jet effects

13 years agosupport for nonisotropic detctor in SP method also on task level
snelling [Fri, 23 Jul 2010 14:47:08 +0000 (14:47 +0000)]
support for nonisotropic detctor in SP method also on task level

13 years agoDefault (=0) LHC-clock phase entry. The run range is from 0 to inf. The range of...
cvetan [Fri, 23 Jul 2010 14:45:37 +0000 (14:45 +0000)]
Default (=0) LHC-clock phase entry. The run range is from 0 to inf. The range of timestamps is also from 0 to inf. The value of the phase is 0.

13 years agoNew test suite for merging of two raw-data streams (Constantin)
cvetan [Fri, 23 Jul 2010 13:11:51 +0000 (13:11 +0000)]
New test suite for merging of two raw-data streams (Constantin)

13 years agoFix for a bug which was preventing to process more than one event. Plus better handli...
cvetan [Fri, 23 Jul 2010 13:11:06 +0000 (13:11 +0000)]
Fix for a bug which was preventing to process more than one event. Plus better handling of the event loop.

13 years agoupdate of the GPU tracker
sgorbuno [Fri, 23 Jul 2010 13:08:49 +0000 (13:08 +0000)]
update of the GPU tracker

13 years agoTemporary protection if one runs raw->sdigits for the real data.
kowal2 [Fri, 23 Jul 2010 13:08:29 +0000 (13:08 +0000)]
Temporary protection if one runs raw->sdigits for the real data.
This will be removed when we implement the right treatment of the LHC clock phase.

13 years agowarnings removed
alla [Fri, 23 Jul 2010 12:26:21 +0000 (12:26 +0000)]
warnings removed

13 years agoUpdating DCS responsibles.
zampolli [Fri, 23 Jul 2010 11:26:33 +0000 (11:26 +0000)]
Updating DCS responsibles.

13 years agoUpdated version of raw-data QA from Raphael. This includes also the measurement of...
cvetan [Fri, 23 Jul 2010 11:08:06 +0000 (11:08 +0000)]
Updated version of raw-data QA from Raphael. This includes also the measurement of the background which was requested by DCS.

13 years agoRevision of SSD ClusterFinder (S. Borysov)
masera [Fri, 23 Jul 2010 10:25:10 +0000 (10:25 +0000)]
Revision of SSD ClusterFinder (S. Borysov)

13 years agoMany improvements in EMCAL calibration class:
gconesab [Fri, 23 Jul 2010 10:12:19 +0000 (10:12 +0000)]
Many improvements in EMCAL calibration class:
  - Added possibility to remove bad channels/clusters by hand
  - Added possibility to recalibrate channels on the flight
  - Fill always max energy channel invariant mass for 2 clusters of the pair
  - Added possiblity to group cells
  - Set histograms range and binning via setters
  - Publish parameters in output file

Changes in PROOF*/SETUP.C to ensure that the new par file compiled library is the one used.

13 years agoallow for rebinning phi weights
snelling [Fri, 23 Jul 2010 10:06:12 +0000 (10:06 +0000)]
allow for rebinning phi weights

13 years agofix bug https://savannah.cern.ch/bugs/index.php?70517
abercuci [Fri, 23 Jul 2010 08:22:50 +0000 (08:22 +0000)]
fix bug https://savannah.cern.ch/bugs/index.php?70517
temporary remove task v0Monitor from train due to crash

13 years agoseparate checks for positive and negative MC particles (Gaute)
richterm [Fri, 23 Jul 2010 07:57:42 +0000 (07:57 +0000)]
separate checks for positive and negative MC particles (Gaute)

13 years agoremoving obsolete functions for initialisation of streamer info which had been moved...
richterm [Fri, 23 Jul 2010 07:50:32 +0000 (07:50 +0000)]
removing obsolete functions for initialisation of streamer info which had been moved to AliHLTMiscImplementation in r41147, redirecting calls to AliHLTMisc

13 years agoThe LHC clock phase stored also in the Raw2SDigits method. Temporary solution
kowal2 [Fri, 23 Jul 2010 07:38:45 +0000 (07:38 +0000)]
The LHC clock phase stored also in the Raw2SDigits method. Temporary solution

13 years agodEdxSigma and dEdxNpoints values now stored in the ESD tracks
sgorbuno [Thu, 22 Jul 2010 18:02:18 +0000 (18:02 +0000)]
dEdxSigma and dEdxNpoints values now stored in the ESD tracks

13 years agoadded automatic/analytic corrections for detector effects in scalar product (needed...
snelling [Thu, 22 Jul 2010 17:14:29 +0000 (17:14 +0000)]
added automatic/analytic corrections for detector effects in scalar product (needed for SPD)

13 years ago- update Config
andronic [Thu, 22 Jul 2010 16:49:35 +0000 (16:49 +0000)]
- update Config

13 years agoBug fix in the check the point on the boundary in FindTPCRatSegment
shahoian [Thu, 22 Jul 2010 16:11:21 +0000 (16:11 +0000)]
Bug fix in the check the point on the boundary in FindTPCRatSegment

13 years agoamplitude cut removed
alla [Thu, 22 Jul 2010 15:25:32 +0000 (15:25 +0000)]
amplitude cut removed

13 years agoAdded analysis task for checking basic properties in ITS, TPC, and TRD in order to...
esicking [Thu, 22 Jul 2010 14:17:27 +0000 (14:17 +0000)]
Added analysis task for checking basic properties in ITS, TPC, and TRD in order to test Geant4 productions

13 years agoset systematics covariance matrix
abercuci [Thu, 22 Jul 2010 12:48:10 +0000 (12:48 +0000)]
set systematics covariance matrix

13 years agoAdding processing of LHC Clock Phase to the GRP preprocessor (Cvetan + me).
zampolli [Thu, 22 Jul 2010 12:15:59 +0000 (12:15 +0000)]
Adding processing of LHC Clock Phase to the GRP preprocessor (Cvetan + me).

13 years ago- update PROOF-INF remove obsolete RooFit, correct include path
andronic [Thu, 22 Jul 2010 11:49:26 +0000 (11:49 +0000)]
- update PROOF-INF remove obsolete RooFit, correct include path

13 years agoCorrected method for Bayesian PID (Rossella)
dainese [Thu, 22 Jul 2010 11:46:30 +0000 (11:46 +0000)]
Corrected method for Bayesian PID (Rossella)

13 years agoswitch to Jochens new raw reader (Markus)
abercuci [Thu, 22 Jul 2010 11:44:26 +0000 (11:44 +0000)]
switch to Jochens new raw reader (Markus)

13 years ago- add AliDielectronPID to LinkDef
andronic [Thu, 22 Jul 2010 11:26:17 +0000 (11:26 +0000)]
- add AliDielectronPID to LinkDef

13 years agocoding convention fixed (Markus H)
abercuci [Thu, 22 Jul 2010 11:23:17 +0000 (11:23 +0000)]
coding convention fixed (Markus H)

13 years agoFixing coding violations (obsolete class?)
kleinb [Thu, 22 Jul 2010 07:34:51 +0000 (07:34 +0000)]
Fixing coding violations (obsolete class?)

13 years agoFixing coding violations (obsolete class?)
kleinb [Thu, 22 Jul 2010 07:34:46 +0000 (07:34 +0000)]
Fixing coding violations (obsolete class?)

13 years agoremoved obsolete classes
snelling [Wed, 21 Jul 2010 15:49:29 +0000 (15:49 +0000)]
removed obsolete classes

13 years agoIntroduction of the LHC-clock phase class + changes in the GRP pp in order to read...
cvetan [Wed, 21 Jul 2010 15:11:33 +0000 (15:11 +0000)]
Introduction of the LHC-clock phase class + changes in the GRP pp in order to read the DCS data and fill the phase object. Next ste to do is to activate this method in the execution chain on the pp.

13 years agoupdated streamer version and macros cleaned up for removed class
snelling [Wed, 21 Jul 2010 14:27:58 +0000 (14:27 +0000)]
updated streamer version and macros cleaned up for removed class

13 years agoIn AliMUONSimpleClusterServer
ivana [Wed, 21 Jul 2010 14:19:33 +0000 (14:19 +0000)]
In AliMUONSimpleClusterServer
Clearing of fPads[] maps in UseDigits() replaced with clearing of TClonesArrays within the maps. This avoids re-creating of TClonesArrays with each event and fixes the problem #69261.

13 years agoremove not needed dependence
snelling [Wed, 21 Jul 2010 14:04:21 +0000 (14:04 +0000)]
remove not needed dependence

13 years agoadjust online display to the new TRD cluster format (Theo)
richterm [Wed, 21 Jul 2010 13:13:04 +0000 (13:13 +0000)]
adjust online display to the new TRD cluster format (Theo)

13 years agoreduced size of TRD cluster for data exchange, make use of new speed improvements...
richterm [Wed, 21 Jul 2010 13:00:24 +0000 (13:00 +0000)]
reduced size of TRD cluster for data exchange, make use of new speed improvements in offline code (Theo)

13 years agoSame warning flags for all gcc makefiles and remove obsolete makefiles
fca [Wed, 21 Jul 2010 12:57:45 +0000 (12:57 +0000)]
Same warning flags for all gcc makefiles and remove obsolete makefiles

13 years agochinging preprocessor flag for AliTRDrecoParam r41621 check (Theo)
richterm [Wed, 21 Jul 2010 12:57:07 +0000 (12:57 +0000)]
chinging preprocessor flag for AliTRDrecoParam r41621 check (Theo)

13 years agoUse TMath functions
fca [Wed, 21 Jul 2010 12:56:25 +0000 (12:56 +0000)]
Use TMath functions

13 years agowarning is removed
basanta [Wed, 21 Jul 2010 12:52:46 +0000 (12:52 +0000)]
warning is removed

13 years ago- Protection in MC, not to access stack out of range (Markus K.)
andronic [Wed, 21 Jul 2010 12:44:12 +0000 (12:44 +0000)]
- Protection in MC, not to access stack out of range (Markus K.)
- Add Print function in SignalBase
- Add ITS nSigmas in VarManager (Markus K.)
- Add PID class in pkg file. Was missing in the last commit

13 years agoProtection in case of missing ESD file.
cvetan [Wed, 21 Jul 2010 12:24:40 +0000 (12:24 +0000)]
Protection in case of missing ESD file.

13 years agoCorrected raw->sdigits method. Using default altro raw-data reader class. Avoid alloc...
cvetan [Wed, 21 Jul 2010 12:07:22 +0000 (12:07 +0000)]
Corrected raw->sdigits method. Using default altro raw-data reader class. Avoid allocating and deleting of containers after each sector + other minor fixes.

13 years agoFix for compilation warnings
shahoian [Wed, 21 Jul 2010 10:36:36 +0000 (10:36 +0000)]
Fix for compilation warnings

13 years agoforce AliEMCALTrack.h to be in /AliceSoft/AliRoot/trunk/include in order to be able...
gconesab [Wed, 21 Jul 2010 09:11:53 +0000 (09:11 +0000)]
force AliEMCALTrack.h to be in /AliceSoft/AliRoot/trunk/include in order to be able to use it in analysis

13 years agocorrecting printf format specifiers
richterm [Wed, 21 Jul 2010 08:13:21 +0000 (08:13 +0000)]
correcting printf format specifiers

13 years agocorrecting printf format specifiers
richterm [Wed, 21 Jul 2010 08:02:45 +0000 (08:02 +0000)]
correcting printf format specifiers

13 years agocorrecting printf format specifiers
richterm [Wed, 21 Jul 2010 07:58:47 +0000 (07:58 +0000)]
correcting printf format specifiers

13 years agoCorrected the central electrode thickness
kowal2 [Wed, 21 Jul 2010 07:39:32 +0000 (07:39 +0000)]
Corrected the central electrode thickness

13 years agocorrecting printf format specifiers
richterm [Wed, 21 Jul 2010 07:38:43 +0000 (07:38 +0000)]
correcting printf format specifiers

13 years agoadding missing argument in printf statement
richterm [Wed, 21 Jul 2010 07:36:59 +0000 (07:36 +0000)]
adding missing argument in printf statement

13 years agocorrecting printf format specifiers
richterm [Wed, 21 Jul 2010 07:34:48 +0000 (07:34 +0000)]
correcting printf format specifiers

13 years agocorrecting printf format specifiers
richterm [Wed, 21 Jul 2010 07:33:25 +0000 (07:33 +0000)]
correcting printf format specifiers

13 years agobug https://savannah.cern.ch/bugs/?69885
richterm [Wed, 21 Jul 2010 07:17:49 +0000 (07:17 +0000)]
bug https://savannah.cern.ch/bugs/?69885
it turned out that a wrong calibration object caused the displacement of clusters
putting back revisions 41975 and 41935

13 years agoChanges to run on PbPb events
dainese [Wed, 21 Jul 2010 03:36:52 +0000 (03:36 +0000)]
Changes to run on PbPb events

13 years agoUpdates + removal of memory leaks
dainese [Wed, 21 Jul 2010 01:09:29 +0000 (01:09 +0000)]
Updates + removal of memory leaks

13 years agofix warning
cholm [Tue, 20 Jul 2010 21:08:40 +0000 (21:08 +0000)]
fix warning

13 years agoImplmented IsSelectedPID (non yet with AliAODPidHF), additional cuts and removal...
dainese [Tue, 20 Jul 2010 17:42:48 +0000 (17:42 +0000)]
Implmented IsSelectedPID (non yet with AliAODPidHF), additional cuts and removal of daughters from primary vertex (Andrea R, Chiara B)

13 years agoIsSelectedPID made non-const
dainese [Tue, 20 Jul 2010 17:41:40 +0000 (17:41 +0000)]
IsSelectedPID made non-const

13 years agocorrect for warnings
schutz [Tue, 20 Jul 2010 17:11:36 +0000 (17:11 +0000)]
correct for warnings

13 years agoWarning removal
marian [Tue, 20 Jul 2010 16:47:06 +0000 (16:47 +0000)]
Warning removal

Marian

13 years agobugfix
pulvir [Tue, 20 Jul 2010 16:30:00 +0000 (16:30 +0000)]
bugfix

13 years agoFixing warnings (Gines)
martinez [Tue, 20 Jul 2010 16:12:58 +0000 (16:12 +0000)]
Fixing warnings (Gines)

13 years agoBugfix in analysis task for phi @7 Tev and added a monito object and task for cut...
pulvir [Tue, 20 Jul 2010 16:01:04 +0000 (16:01 +0000)]
Bugfix in analysis task for phi @7 Tev and added a monito object and task for cut studying

13 years agoadding check for AliTRDrecoParam r41621 (Theo)
richterm [Tue, 20 Jul 2010 15:25:24 +0000 (15:25 +0000)]
adding check for AliTRDrecoParam r41621 (Theo)

13 years agosetting kTRDin track flag instead of kTRDout (Theo)
richterm [Tue, 20 Jul 2010 15:21:43 +0000 (15:21 +0000)]
setting kTRDin track flag instead of kTRDout (Theo)

13 years agoAdded libraries needed for PHOS tasks
slindal [Tue, 20 Jul 2010 14:07:13 +0000 (14:07 +0000)]
Added libraries needed for PHOS tasks

13 years agoWarning
slindal [Tue, 20 Jul 2010 13:47:59 +0000 (13:47 +0000)]
Warning

13 years agoWarnings fixed.
zampolli [Tue, 20 Jul 2010 13:27:48 +0000 (13:27 +0000)]
Warnings fixed.

13 years agoupdated mean pt calculation (F.Prino)
bhippoly [Tue, 20 Jul 2010 13:21:54 +0000 (13:21 +0000)]
updated mean pt calculation (F.Prino)