]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
11 years agoEliminated hardwired names. The layed detector type ID is stored in TGeo and can
shahoian [Sun, 5 Aug 2012 22:57:29 +0000 (22:57 +0000)]
Eliminated hardwired names. The layed detector type ID is stored in TGeo and can
be retrieved by AliITSgeomTGeoUpg

11 years agomove for proof
loizides [Sun, 5 Aug 2012 22:08:00 +0000 (22:08 +0000)]
move for proof

11 years agoadjust libs
loizides [Sun, 5 Aug 2012 21:25:05 +0000 (21:25 +0000)]
adjust libs

11 years agoadjust paths
loizides [Sun, 5 Aug 2012 21:22:50 +0000 (21:22 +0000)]
adjust paths

11 years agonot needed any longer
loizides [Sun, 5 Aug 2012 21:20:56 +0000 (21:20 +0000)]
not needed any longer

11 years agomove EMCALJetTasks from PWGGA to PWGJE
loizides [Sun, 5 Aug 2012 21:18:57 +0000 (21:18 +0000)]
move EMCALJetTasks from PWGGA to PWGJE

11 years agocreate general emcal task lib
loizides [Sun, 5 Aug 2012 21:12:46 +0000 (21:12 +0000)]
create general emcal task lib

11 years agomacro dir
loizides [Sun, 5 Aug 2012 20:17:10 +0000 (20:17 +0000)]
macro dir

11 years agoemcal tasks
loizides [Sun, 5 Aug 2012 19:33:06 +0000 (19:33 +0000)]
emcal tasks

11 years agoupdate from salvatore
loizides [Sun, 5 Aug 2012 19:11:09 +0000 (19:11 +0000)]
update from salvatore

11 years agoMore consrvative binning in pt + update in macro
pchrist [Sun, 5 Aug 2012 18:17:17 +0000 (18:17 +0000)]
More consrvative binning in pt + update in macro

11 years agoreduce memory footprint (M. Zimmermann)
kleinb [Sat, 4 Aug 2012 11:41:34 +0000 (11:41 +0000)]
reduce memory footprint (M. Zimmermann)

11 years agoCode reworking to analize ESD and AOD (H.Qvigstad)
kharlov [Fri, 3 Aug 2012 16:09:34 +0000 (16:09 +0000)]
Code reworking to analize ESD and AOD (H.Qvigstad)

11 years agoFixes from Marek to bring the secondary correction object
cholm [Fri, 3 Aug 2012 13:54:19 +0000 (13:54 +0000)]
Fixes from Marek to bring the secondary correction object
from the (until now) unused AliCentralMCCorrectionTask in
sync with the analysis task.

11 years agoFixed igmore
cholm [Fri, 3 Aug 2012 10:57:54 +0000 (10:57 +0000)]
Fixed igmore

11 years agoAdding the proper nested loop
pchrist [Fri, 3 Aug 2012 09:47:56 +0000 (09:47 +0000)]
Adding the proper nested loop

11 years agoAdding CMakeLists.txt
hristov [Fri, 3 Aug 2012 09:46:23 +0000 (09:46 +0000)]
Adding CMakeLists.txt

11 years agoInstallation of DA commented out, their distribution is done with an RPM
hristov [Fri, 3 Aug 2012 09:07:47 +0000 (09:07 +0000)]
Installation of DA commented out, their distribution is done with an RPM

11 years agoFixed average separation cut
akisiel [Thu, 2 Aug 2012 16:56:58 +0000 (16:56 +0000)]
Fixed average separation cut

11 years agoAdd new cut monitor for V0s
akisiel [Thu, 2 Aug 2012 16:19:38 +0000 (16:19 +0000)]
Add new cut monitor for V0s

11 years agoAdded posibility to Call GetEntry for Mixed events. This is tmp fix for mixing events...
mvala [Thu, 2 Aug 2012 16:12:35 +0000 (16:12 +0000)]
Added posibility to Call GetEntry for Mixed events. This is tmp fix for mixing events, which are using TRef object (AOD events). Working for all available mixing modes.

Example:

   // don't call GetEntry for mixed events automatically
   // user will have to do it by hand in UserExecMix()
   mixHandler->DoMixEventGetEntryAuto(kFALSE);

and in your task you do

UserExecMix() {

...

// AliMixInputEventHandler *fMixingInputHandler = ... ;
...
// Calling GetEntry for main event
if (!fMixingInputHandler->GetEntryMainEvent()) return;
// now TRef is correctly set for Main Event ONLY

Int_t nContributorsMain = aodEvent->GetVertex(0)->GetNContributors();
AliAODEvent *aodEventMixTmp=0;
Int_t nContributorsMix=0;
for(Int_t iBuffer=0; iBuffer<bufferSize; iBuffer++) {
   // calling GetEntry for mixed event with id=iBuffer
   if (!fMixingInputHandler->GetEntryMixedEvent(iBuffer)) return;
   // now TRef is correctly set for Mixed Event with id 'iBuffer' ONLY
   // other Mixed Events and Main Event has WRONG TRef

   aodEventMixTmp = dynamic_cast<AliAODEvent *>(GetMixedEvent(iBuffer));
   nContributorsMix = aodEventMixTmp->GetVertex(0)->GetNContributors();
   AliInfo(Form("[mixed=%d] main=%d [%d] -> mix=%d [%d]",fMixingInputHandler->NumberMixedTimes(),aodEvent->GetNumberOfTracks(),nContributorsMain,aodEventMixTmp->GetNumberOfTracks(),nContributorsMix));
}
...

}

11 years agoImprovements in V0 classes
akisiel [Thu, 2 Aug 2012 15:49:52 +0000 (15:49 +0000)]
Improvements in V0 classes

11 years agoAvoid creation of duplicate targets
shahoian [Thu, 2 Aug 2012 14:56:47 +0000 (14:56 +0000)]
Avoid creation of duplicate targets

11 years agoReverting previous commit
masera [Thu, 2 Aug 2012 13:42:00 +0000 (13:42 +0000)]
Reverting previous commit

11 years agonew SPD cooling manifolds (M.Sitta)
masera [Thu, 2 Aug 2012 13:26:22 +0000 (13:26 +0000)]
new SPD cooling manifolds (M.Sitta)

11 years agoupdate from Taku
cbaumann [Thu, 2 Aug 2012 13:15:22 +0000 (13:15 +0000)]
update from Taku

11 years agoClean-up of the DA code
cholm [Thu, 2 Aug 2012 12:41:27 +0000 (12:41 +0000)]
Clean-up of the DA code

11 years agoSavannah 96506
morsch [Thu, 2 Aug 2012 11:12:25 +0000 (11:12 +0000)]
Savannah 96506

11 years agoRemoved obsolete classes + added cut set for kstar analysis
fbellini [Thu, 2 Aug 2012 11:08:51 +0000 (11:08 +0000)]
Removed obsolete classes + added cut set for kstar analysis

11 years agoAdded cut set for kstar analysis (fbellini)
fbellini [Thu, 2 Aug 2012 11:05:50 +0000 (11:05 +0000)]
Added cut set for kstar analysis (fbellini)

11 years agoMacro update (cosmetics)
pchrist [Thu, 2 Aug 2012 10:12:22 +0000 (10:12 +0000)]
Macro update (cosmetics)

11 years ago"touch CMakeLists.txt" + update of upgrade CMakes
shahoian [Wed, 1 Aug 2012 23:25:19 +0000 (23:25 +0000)]
"touch CMakeLists.txt" + update of upgrade CMakes

11 years agoPatch to remove global contrained tracks from the calculation of the primary vertex...
prino [Wed, 1 Aug 2012 21:57:32 +0000 (21:57 +0000)]
Patch to remove global contrained tracks from the calculation of the primary vertex without daughters

11 years agoRevert commit for AliAODRecoDecayHF
prino [Wed, 1 Aug 2012 21:40:24 +0000 (21:40 +0000)]
Revert commit for AliAODRecoDecayHF

11 years agoAdd run list for production LHC12a12 (Renu)
prino [Wed, 1 Aug 2012 21:37:05 +0000 (21:37 +0000)]
Add run list for production LHC12a12 (Renu)

11 years agocleanup of the code for selection of SPD only vertices
prino [Wed, 1 Aug 2012 21:31:32 +0000 (21:31 +0000)]
cleanup of the code for selection of SPD only vertices

11 years agoAdded histograms for primary vertex QA
prino [Wed, 1 Aug 2012 21:28:51 +0000 (21:28 +0000)]
Added histograms for primary vertex QA

11 years agoCode updates (Stefan Heckel)
pchrist [Wed, 1 Aug 2012 20:17:34 +0000 (20:17 +0000)]
Code updates (Stefan Heckel)

11 years agoUpdated efficiency task for the balance function studies (Alis)
pchrist [Wed, 1 Aug 2012 20:10:54 +0000 (20:10 +0000)]
Updated efficiency task for the balance function studies (Alis)

11 years agoFix in histo binning
prino [Wed, 1 Aug 2012 16:53:34 +0000 (16:53 +0000)]
Fix in histo binning

11 years agoAdding CMakeLists
shahoian [Wed, 1 Aug 2012 16:46:13 +0000 (16:46 +0000)]
Adding CMakeLists

11 years agoBringing CMakeLists under svn maintenance
shahoian [Wed, 1 Aug 2012 16:38:49 +0000 (16:38 +0000)]
Bringing CMakeLists under svn maintenance

11 years agoThe local CMakeList.txt files will not be regenerated from the template, instead
shahoian [Wed, 1 Aug 2012 16:31:41 +0000 (16:31 +0000)]
The local CMakeList.txt files will not be regenerated from the template, instead
the versions maintained by svn will be used. Needed for making independent nested
directories cmake...

11 years agoDecoupled ITS/UPGRADE cmake stuff from ITS
shahoian [Wed, 1 Aug 2012 16:29:34 +0000 (16:29 +0000)]
Decoupled ITS/UPGRADE cmake stuff from ITS

11 years agoEnable usage of MC vertex also for D+
prino [Wed, 1 Aug 2012 12:42:44 +0000 (12:42 +0000)]
Enable usage of MC vertex also for D+

11 years agoUpdated MC pt shape syst unc for D* (Raoul)
prino [Wed, 1 Aug 2012 12:36:37 +0000 (12:36 +0000)]
Updated MC pt shape syst unc for D* (Raoul)

11 years agoSet the detector version to 0 for upgrade. Tmp.hack to make the simulation chain...
shahoian [Wed, 1 Aug 2012 11:29:52 +0000 (11:29 +0000)]
Set the detector version to 0 for upgrade. Tmp.hack to make the simulation chain working

11 years agoAnalysis code updated
auras [Wed, 1 Aug 2012 10:49:16 +0000 (10:49 +0000)]
Analysis code updated

11 years agoAnalysis code updated
auras [Wed, 1 Aug 2012 10:47:49 +0000 (10:47 +0000)]
Analysis code updated

11 years agoNew code for correlation studies (by Xitzel Sanchez Castro)
delia [Wed, 1 Aug 2012 08:46:42 +0000 (08:46 +0000)]
New code for correlation studies (by Xitzel Sanchez Castro)

11 years agoCorrelations folder created
delia [Wed, 1 Aug 2012 08:15:10 +0000 (08:15 +0000)]
Correlations folder created

11 years agoprotect against crash due to wrong gDirectory settings in OCDB
abercuci [Wed, 1 Aug 2012 07:59:23 +0000 (07:59 +0000)]
protect against crash due to wrong gDirectory settings in OCDB
manipulations (Markus)

11 years agoPHOS calibration macros
prsnko [Wed, 1 Aug 2012 06:24:06 +0000 (06:24 +0000)]
PHOS calibration macros

11 years ago Update in the drawing macros
pchrist [Tue, 31 Jul 2012 22:29:13 +0000 (22:29 +0000)]
 Update in the drawing macros

11 years agoSwitches for SPD vertex and filter bit cut
prino [Tue, 31 Jul 2012 21:57:40 +0000 (21:57 +0000)]
Switches for SPD vertex and filter bit cut

11 years agorebin of histos + setter for ref mult (Renu)
prino [Tue, 31 Jul 2012 21:56:34 +0000 (21:56 +0000)]
rebin of histos + setter for ref mult (Renu)

11 years agoFix for deleting array of AliMixInputHandlerInfo objects, causes crash at the end...
mvala [Tue, 31 Jul 2012 20:08:15 +0000 (20:08 +0000)]
Fix for deleting array of AliMixInputHandlerInfo objects, causes crash at the end of analysis in proof mode. Reported by Chiara Bianchin

11 years agoUpdated ntuple variables
prino [Tue, 31 Jul 2012 17:40:51 +0000 (17:40 +0000)]
Updated ntuple variables

11 years agochanges from fzhou
mcosenti [Tue, 31 Jul 2012 16:32:54 +0000 (16:32 +0000)]
changes from fzhou

11 years agofixed AliChaoticity (streaming problems + cout)
miweber [Tue, 31 Jul 2012 14:34:39 +0000 (14:34 +0000)]
fixed AliChaoticity (streaming problems + cout)

11 years agoUpdate V0 analysis
akisiel [Tue, 31 Jul 2012 10:24:15 +0000 (10:24 +0000)]
Update V0 analysis

11 years agoAdd New correlation function
akisiel [Tue, 31 Jul 2012 10:23:11 +0000 (10:23 +0000)]
Add New correlation function

11 years agocorrecting placement of 'using' statements (Thorsten)
richterm [Tue, 31 Jul 2012 08:24:00 +0000 (08:24 +0000)]
correcting placement of 'using' statements (Thorsten)

11 years agocorrecting placement of 'using' statements (Thorsten)
richterm [Tue, 31 Jul 2012 08:17:21 +0000 (08:17 +0000)]
correcting placement of 'using' statements (Thorsten)

11 years agocorrecting placement of 'using' statements (Thorsten), minor coverity defect corrected
richterm [Tue, 31 Jul 2012 08:16:56 +0000 (08:16 +0000)]
correcting placement of 'using' statements (Thorsten), minor coverity defect corrected

11 years agoTrending macro update
fbellini [Tue, 31 Jul 2012 08:16:37 +0000 (08:16 +0000)]
Trending macro update

11 years agocorrecting placement of 'using' statements (Thorsten)
richterm [Tue, 31 Jul 2012 08:13:46 +0000 (08:13 +0000)]
correcting placement of 'using' statements (Thorsten)

11 years agoProper treatment of runs in which only a subset of the QA tasks are available
masera [Mon, 30 Jul 2012 18:10:36 +0000 (18:10 +0000)]
Proper treatment of runs in which only a subset of the QA tasks are available

11 years agoUpdates for Lc->V0+bachelor analysis (Annalisa)
prino [Mon, 30 Jul 2012 17:08:58 +0000 (17:08 +0000)]
Updates for Lc->V0+bachelor analysis (Annalisa)

11 years agoUpdating TPC gain validation (Marian - see https://savannah.cern.ch/bugs/index.php...
zampolli [Mon, 30 Jul 2012 17:08:23 +0000 (17:08 +0000)]
Updating TPC gain validation (Marian - see https://savannah.cern.ch/bugs/index.php?96432).

11 years agoadd 8 missing runs from LHC12ab
gconesab [Mon, 30 Jul 2012 15:11:02 +0000 (15:11 +0000)]
add 8 missing runs from LHC12ab

11 years agoAdjust precision of EPSILON (Xianguo)
cblume [Mon, 30 Jul 2012 14:59:52 +0000 (14:59 +0000)]
Adjust precision of EPSILON (Xianguo)

11 years agocode cleanup, documentation, placement of 'using' statements
richterm [Mon, 30 Jul 2012 14:38:06 +0000 (14:38 +0000)]
code cleanup, documentation, placement of 'using' statements

11 years agochanges in .pkg for chaoticity task + remove couts
miweber [Mon, 30 Jul 2012 14:21:40 +0000 (14:21 +0000)]
changes in .pkg for chaoticity task + remove couts

11 years agocode cleanup, documentation, placement of 'using' statements
richterm [Mon, 30 Jul 2012 13:48:43 +0000 (13:48 +0000)]
code cleanup, documentation, placement of 'using' statements

11 years agochanges from fzhou
mcosenti [Mon, 30 Jul 2012 13:05:20 +0000 (13:05 +0000)]
changes from fzhou

11 years agomove print to debug
gconesab [Mon, 30 Jul 2012 12:46:25 +0000 (12:46 +0000)]
move print to debug

11 years agofix trigger name selection
gconesab [Mon, 30 Jul 2012 12:45:24 +0000 (12:45 +0000)]
fix trigger name selection

11 years agochanges from saiola and soh
mcosenti [Mon, 30 Jul 2012 12:07:54 +0000 (12:07 +0000)]
changes from saiola and soh

11 years agoFix name of output container (M. Zimmermann)
kleinb [Mon, 30 Jul 2012 11:56:47 +0000 (11:56 +0000)]
Fix name of output container (M. Zimmermann)

11 years agoAdding Benjamins analysis for QM, because he has not yet commit rights.
akalweit [Mon, 30 Jul 2012 11:55:02 +0000 (11:55 +0000)]
Adding Benjamins analysis for QM, because he has not yet commit rights.

11 years agomodified the task to use Branches which are generated by JetTask like as UA1 and...
kleinb [Mon, 30 Jul 2012 11:17:45 +0000 (11:17 +0000)]
modified the task to use Branches which are generated by JetTask like as UA1 and SISCone (D. Sakata)

11 years agoFactorize code to make it more readable, add T corrections, configure reco utils...
gconesab [Mon, 30 Jul 2012 09:07:25 +0000 (09:07 +0000)]
Factorize code to make it more readable, add T corrections, configure reco utils with new MC settings

11 years agoadd 2012 LHC12abcd runs corrections, few from LHC12ab missing
gconesab [Mon, 30 Jul 2012 08:41:09 +0000 (08:41 +0000)]
add 2012 LHC12abcd runs corrections, few from LHC12ab missing

11 years agoRevert commit 55915 (Diego)
pcrochet [Sun, 29 Jul 2012 12:54:35 +0000 (12:54 +0000)]
Revert commit 55915 (Diego)

11 years agoFix loading of libraries (Diego)
pcrochet [Sun, 29 Jul 2012 12:52:56 +0000 (12:52 +0000)]
Fix loading of libraries (Diego)

11 years agoMinor fix: get the correct run number for runs which are exact multiple values of...
pcrochet [Sat, 28 Jul 2012 08:38:07 +0000 (08:38 +0000)]
Minor fix: get the correct run number for runs which are exact multiple values of 1000 (Diego)

11 years agoSPD DQM histograms improvement
masera [Fri, 27 Jul 2012 20:29:13 +0000 (20:29 +0000)]
SPD DQM histograms improvement

11 years agoAdding K0 Analysis code
akisiel [Fri, 27 Jul 2012 15:55:55 +0000 (15:55 +0000)]
Adding K0 Analysis code

11 years agoAdd getter for AliMuonTrackCuts object: this is intended for expert users who want...
pcrochet [Fri, 27 Jul 2012 14:44:50 +0000 (14:44 +0000)]
Add getter for AliMuonTrackCuts object: this is intended for expert users who want to play with the track cut parameters (Cynthia)

11 years agominor fixes, made compilable, added standalone support (Hans)
cblume [Thu, 26 Jul 2012 18:48:06 +0000 (18:48 +0000)]
minor fixes, made compilable, added standalone support (Hans)

11 years agochanges for soh
mcosenti [Thu, 26 Jul 2012 15:37:42 +0000 (15:37 +0000)]
changes for soh

11 years agoImplementation of the correction factor for ring angular resolution as a function...
gvolpe [Thu, 26 Jul 2012 14:41:43 +0000 (14:41 +0000)]
Implementation of the correction factor for ring angular resolution as a function of the chamber occupancy

11 years agoUpdates Taku
cbaumann [Thu, 26 Jul 2012 13:23:20 +0000 (13:23 +0000)]
Updates Taku

11 years agoFixing phys. selection in event mixing framework
mvala [Thu, 26 Jul 2012 13:19:25 +0000 (13:19 +0000)]
Fixing phys. selection in event mixing framework

11 years agoupdates markus
jbook [Thu, 26 Jul 2012 13:03:24 +0000 (13:03 +0000)]
updates markus

11 years agopatch - Constantin
gconesab [Thu, 26 Jul 2012 12:44:36 +0000 (12:44 +0000)]
patch - Constantin

11 years ago-updates on HF for mc
jbook [Thu, 26 Jul 2012 12:38:24 +0000 (12:38 +0000)]
-updates on HF for mc

11 years agoupdate
loizides [Thu, 26 Jul 2012 12:35:56 +0000 (12:35 +0000)]
update

11 years agoupdate from Salvatore
loizides [Thu, 26 Jul 2012 12:11:24 +0000 (12:11 +0000)]
update from Salvatore