]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
13 years agofixed typo, added protection against numerical instability
kleinb [Tue, 23 Nov 2010 12:18:15 +0000 (12:18 +0000)]
fixed typo, added protection against numerical instability

13 years agoAdded CSV format
mfloris [Tue, 23 Nov 2010 11:08:14 +0000 (11:08 +0000)]
Added CSV format

13 years agoremoving redundant checks for overlapping run-ranges
rgrosso [Tue, 23 Nov 2010 10:21:09 +0000 (10:21 +0000)]
removing redundant checks for overlapping run-ranges

13 years agoadd centrality dependence (Markus)
abercuci [Tue, 23 Nov 2010 08:13:33 +0000 (08:13 +0000)]
add centrality dependence (Markus)

13 years agoFix for bug #75588
morsch [Mon, 22 Nov 2010 23:12:24 +0000 (23:12 +0000)]
Fix for bug #75588

13 years agoNew task to study fake tracks in simulation: need to access the recoParam used during...
martinez [Mon, 22 Nov 2010 22:14:52 +0000 (22:14 +0000)]
New task to study fake tracks in simulation: need to access the recoParam used during the reconstruction; associate reco & MC tracks either by using MC labels or by comparing the position of the clusters (default); fill counters to get the detailed statistics of good tracks, fakes, events containing fakes, ... ; fill histograms to compare the chi2, number of associated clusters, pt, DCA, ... of good tracks and fakes (Philippe P.)

13 years agomods to use mfchebKGI_sym.root in online mode (AliMagF constructor) - Annalisa
masera [Mon, 22 Nov 2010 22:12:31 +0000 (22:12 +0000)]
mods to use mfchebKGI_sym.root in online mode (AliMagF constructor) - Annalisa

13 years agocontainer for season time shift
alla [Mon, 22 Nov 2010 20:30:25 +0000 (20:30 +0000)]
container for season time shift

13 years agoCorrect copy and assignment operator (Jochen Klein)
kleinb [Mon, 22 Nov 2010 19:42:39 +0000 (19:42 +0000)]
Correct copy and assignment operator (Jochen Klein)

13 years agobugs #75412, fixed typo in BondPaper material definition
pavlinov [Mon, 22 Nov 2010 15:44:15 +0000 (15:44 +0000)]
bugs #75412, fixed typo in BondPaper material definition

13 years agoPrepend . to the LD_LIBRARY_PATH in all generated scripts
agheata [Mon, 22 Nov 2010 12:50:00 +0000 (12:50 +0000)]
Prepend . to the LD_LIBRARY_PATH in all generated scripts

13 years agonew T0 Calib for adjust time exactly in 0
alla [Mon, 22 Nov 2010 12:06:21 +0000 (12:06 +0000)]
new T0 Calib for adjust time exactly in 0

13 years agoA task can now declare the list of input branches that are requested during analysis.
agheata [Mon, 22 Nov 2010 10:59:27 +0000 (10:59 +0000)]
A task can now declare the list of input branches that are requested during analysis.
The way to do this is to add in the constructor where the output slots are defined:
fBranchNames = "ESD:bre1,bre2,...,breN AOD:bra1,bra2,...,braM";
The declared branches are currently not loaded automatically, the list being only used to make sure we don't combine in a train tasks that are using the branch loading feature with others that expect the full event.
A task using this should manually request loading of needed branches during UserExec - see example below.
This commit modifies the AliPhysicsSelectionTask to use this feature, gaining a factor of 2 in speed when run standalone.
//________________________________________________________________________
AliAnalysisTaskPt::AliAnalysisTaskPt(const char *name)
  : AliAnalysisTaskSE(name), fEvent(0), fOutputList(0), fHistPt(0)
{
  // Constructor

  // Define input and output slots here
  // Input slot #0 works with a TChain
  DefineInput(0, TChain::Class());
  // Output slot #0 id reserved by the base class for AOD
  // Output slot #1 writes into a TH1 container
  DefineOutput(1, TList::Class());
  fBranchNames = "ESD:AliESDRun.,AliESDHeader.,Tracks";
}
//________________________________________________________________________
void AliAnalysisTaskPt::UserExec(Option_t *)
{
  // Main loop
  // Called for each event

  // Post output data.
  fEvent = InputEvent();
  if (!fEvent) {
    printf("ERROR: Event not available\n");
    return;
  }

  AliAnalysisManager *am = AliAnalysisManager::GetAnalysisManager();
  am->LoadBranch("AliESDHeader.");
  am->LoadBranch("AliESDRun.");

  // Track loop to fill a pT spectrum.
  am->LoadBranch("Tracks");
  Int_t ntracks = fEvent->GetNumberOfTracks();
  printf("There are %d tracks in this event\n", ntracks);
  for (Int_t iTracks = 0; iTracks < ntracks; iTracks++) {
  ...
}

13 years agoupdate for transporting event info along the TRD train
abercuci [Mon, 22 Nov 2010 09:14:56 +0000 (09:14 +0000)]
update for transporting event info along the TRD train

13 years ago- Remove the holes in the lists of output histograms to make the merging working...
martinez [Mon, 22 Nov 2010 06:40:41 +0000 (06:40 +0000)]
- Remove the holes in the lists of output histograms to make the merging working with the new root version. Add a new compiled macro (MuonResolution.C) to run the task. Add the possibility to fit the residuals to extract the resolution (now the default option instead of taking the RMS). Add the possibility to select events of a given trigger class (MUON, MB, …). Add the possibility to select tracks in the geometrical acceptance (passing Rabs and eta cuts). Add mchview objects to the output file to display DE resolution and systematic shifts (Philippe P.)

13 years agonew background estimates/subtractions, changed from thnsparse to TH3F (Magali)
kleinb [Sun, 21 Nov 2010 19:25:25 +0000 (19:25 +0000)]
new background estimates/subtractions, changed from thnsparse to TH3F (Magali)

13 years agoSubmit missing classes to previous release
cblume [Sun, 21 Nov 2010 18:15:26 +0000 (18:15 +0000)]
Submit missing classes to previous release

13 years agoshould fix one Valgrind output comment
amarin [Sun, 21 Nov 2010 15:51:07 +0000 (15:51 +0000)]
should fix one Valgrind output comment

13 years agoFixing some more coding violations, fix in reweighting of V0s, changed GetCorrections...
cnattras [Sun, 21 Nov 2010 14:27:27 +0000 (14:27 +0000)]
Fixing some more coding violations, fix in reweighting of V0s, changed GetCorrections to use TPC+ITS tracks, changed AliAnalysisHadEtReconstructed to look at TPC+ITS tracks

13 years agoClean up
dainese [Sun, 21 Nov 2010 13:51:32 +0000 (13:51 +0000)]
Clean up

13 years agofix compilation warnings
gconesab [Sun, 21 Nov 2010 11:53:32 +0000 (11:53 +0000)]
fix compilation warnings

13 years agoAliAnaPi0: Change most of TH3 to TH2
gconesab [Sun, 21 Nov 2010 11:13:45 +0000 (11:13 +0000)]
AliAnaPi0: Change most of TH3 to TH2
Change fixed Vertex histogram dimension to smaller ones
SetOwner of mixing list to FALSE in AliAnaPi0 and AliAnaOmegaToPi0Gamma
AliCaloTrackReader: Add option for analysis of filtered data with calorimeter only information
Updated analysis configuration macros

13 years agoIntroduce smaller AliTRDCalDCSFEEv2 object (Frederick)
cblume [Sun, 21 Nov 2010 11:00:39 +0000 (11:00 +0000)]
Introduce smaller AliTRDCalDCSFEEv2 object (Frederick)

13 years agoUpdate to analysis macros
pulvir [Sun, 21 Nov 2010 03:57:04 +0000 (03:57 +0000)]
Update to analysis macros

13 years agoAdded check of pileup in event cuts
pulvir [Sun, 21 Nov 2010 03:25:31 +0000 (03:25 +0000)]
Added check of pileup in event cuts

13 years agoimplementing realistic reweighting of V0s, fixing some minor coding violations, addin...
cnattras [Sat, 20 Nov 2010 23:12:07 +0000 (23:12 +0000)]
implementing realistic reweighting of V0s, fixing some minor coding violations, adding hadronic corrections to AliAnalysisEtReconstructed, config macros, and ITS only and ITSTPC track cuts to AliAnalysisTaskTotEt, now requires newer aliroot version because it uses default cuts for 2010

13 years agonew classes for tracking efficiency
jotwinow [Sat, 20 Nov 2010 22:44:54 +0000 (22:44 +0000)]
new classes for tracking efficiency

13 years agoevaluate tracking efficiency
jotwinow [Sat, 20 Nov 2010 22:43:47 +0000 (22:43 +0000)]
evaluate tracking efficiency

13 years agoTPC-ITS tracking for Pb-Pb
jotwinow [Sat, 20 Nov 2010 17:51:17 +0000 (17:51 +0000)]
TPC-ITS tracking for Pb-Pb

13 years agoImplementing LTU configuration retrieval from DAQ logbook (logbook_detectors table),
zampolli [Sat, 20 Nov 2010 16:32:24 +0000 (16:32 +0000)]
Implementing LTU configuration retrieval from DAQ logbook (logbook_detectors table),
to be read from the GRP preprocessor, and stored in the OCDB in /GRP/CTP/LTUConfig.
The validity of the object is [current_run, current_run], even if the entry committed
in AliRoot has infinite validity.
Only runs taken in global partitions will now be considered to fill the entry (a dummy
entry should be implemented as for the other CTP entries).

13 years agotrain version for AddTaskCentrality for testing
kleinb [Sat, 20 Nov 2010 12:54:40 +0000 (12:54 +0000)]
train version for AddTaskCentrality for testing

13 years agochanging ranges in PlotAll
jgrosseo [Sat, 20 Nov 2010 12:45:23 +0000 (12:45 +0000)]
changing ranges in PlotAll

13 years agoSome clean up in addTask macros, added centrality selection and event classes to...
kleinb [Sat, 20 Nov 2010 12:37:57 +0000 (12:37 +0000)]
Some clean up in addTask macros, added centrality selection and event classes to service task and jet spectrum task

13 years agoAdded some methods for testing purpose
pavlinov [Sat, 20 Nov 2010 10:43:47 +0000 (10:43 +0000)]
Added some methods for testing purpose

13 years agotemporary fix to make QA analysis work for AliRoot v4-21-06-AN
gconesab [Sat, 20 Nov 2010 09:19:06 +0000 (09:19 +0000)]
temporary fix to make QA analysis work for AliRoot v4-21-06-AN

13 years agocovariances back as default + support plotting single event flow
snelling [Fri, 19 Nov 2010 23:18:06 +0000 (23:18 +0000)]
covariances back as default + support plotting single event flow

13 years agoCentrality selection with SPDouter clusters
dainese [Fri, 19 Nov 2010 21:41:59 +0000 (21:41 +0000)]
Centrality selection with SPDouter clusters

13 years agouncomment setting of background 2
kleinb [Fri, 19 Nov 2010 20:17:04 +0000 (20:17 +0000)]
uncomment setting of background 2

13 years agoCorrect the setting of geometry matrices from ESDs
gconesab [Fri, 19 Nov 2010 20:10:25 +0000 (20:10 +0000)]
Correct the setting of geometry matrices from ESDs
Fill cell position histograms only when needed.
Change information print in the copy of the Event Statistics histogram

13 years agoUpdate TPCCEda to write output file in parts (to avoid too big files produced in...
haavard [Fri, 19 Nov 2010 17:26:15 +0000 (17:26 +0000)]
Update TPCCEda to write output file in parts (to avoid too big files produced in lead runs)

13 years agoAdded an information histogram on *real* number of events contributing to fill each...
pulvir [Fri, 19 Nov 2010 17:25:32 +0000 (17:25 +0000)]
Added an information histogram on *real* number of events contributing to fill each AliRsnPair set of histograms

13 years agoSetting the magnetic field - needed by the clusterfinders
masera [Fri, 19 Nov 2010 17:15:36 +0000 (17:15 +0000)]
Setting the magnetic field - needed by the clusterfinders

13 years agoFew updates to make it work again on the Grid
dperrino [Fri, 19 Nov 2010 16:34:29 +0000 (16:34 +0000)]
Few updates to make it work again on the Grid

13 years agoChanged default settings
dainese [Fri, 19 Nov 2010 16:26:53 +0000 (16:26 +0000)]
Changed default settings

13 years agoAdded writing of random cones with same R as kT fastjet background calculation
kleinb [Fri, 19 Nov 2010 15:25:23 +0000 (15:25 +0000)]
Added writing of random cones with same R as kT fastjet background calculation

13 years agoFixed minor mem leak in the d'tor and added protection
kleinb [Fri, 19 Nov 2010 15:24:10 +0000 (15:24 +0000)]
Fixed minor mem leak in the d'tor and added protection

13 years agonew bining and centrality selection Jacek Otwinowski and Jochen Thaeder
jotwinow [Fri, 19 Nov 2010 14:56:59 +0000 (14:56 +0000)]
new bining and centrality selection Jacek Otwinowski and Jochen Thaeder

13 years agoadd histogram with event statistics to histogram list for AOD and ESD analysis
gconesab [Fri, 19 Nov 2010 13:46:48 +0000 (13:46 +0000)]
add histogram with event statistics to histogram list for AOD and ESD analysis

13 years agoGetting rid of warning.
aszostak [Fri, 19 Nov 2010 13:21:33 +0000 (13:21 +0000)]
Getting rid of warning.

13 years agoNew centrality files. (Alberica)
morsch [Fri, 19 Nov 2010 12:16:10 +0000 (12:16 +0000)]
New centrality files. (Alberica)

13 years agoSetting centrality in the AOD header
kleinb [Fri, 19 Nov 2010 12:14:16 +0000 (12:14 +0000)]
Setting centrality in the AOD header

13 years agoCorrections Ch. Kleinn-Boesing
morsch [Fri, 19 Nov 2010 11:11:47 +0000 (11:11 +0000)]
Corrections Ch. Kleinn-Boesing

13 years agoModifications from Jochen Thaeder
morsch [Fri, 19 Nov 2010 10:51:29 +0000 (10:51 +0000)]
Modifications from Jochen Thaeder

13 years agoUpdate of package classes.
pulvir [Fri, 19 Nov 2010 10:06:29 +0000 (10:06 +0000)]
Update of package classes.
Introduced a common base class for cuts and values, which allows to generalize the evaluation methods, and select the target "a posteriori".
Generalized the AliRsnValue computation with the addition of a generic cut support object which can be any TObject (this copes with the need
to have an AliRsnPair in some cuts related to the mother, and AliESDtrackCuts for multiplicity computation.
In processInfo adjusted some indentation and adapted also to PROOF.
Adapted some header comments and removed some useless methods.

13 years agoAdded a protection in case the raw data signal (channel) has a read out error (neg...
srossegg [Fri, 19 Nov 2010 10:04:54 +0000 (10:04 +0000)]
Added a protection in case the raw data signal (channel) has a read out error (neg. bunchlength).

13 years agostart adding centrality to PWG1/TRD wagons (Markus)
abercuci [Fri, 19 Nov 2010 09:31:01 +0000 (09:31 +0000)]
start adding centrality to PWG1/TRD wagons (Markus)

13 years agoUse Pythi 8.145 as default.
morsch [Fri, 19 Nov 2010 08:37:51 +0000 (08:37 +0000)]
Use Pythi 8.145 as default.

13 years agoNew pythia8 version
morsch [Fri, 19 Nov 2010 08:37:18 +0000 (08:37 +0000)]
New pythia8 version

13 years agoObsolete version removed.
morsch [Fri, 19 Nov 2010 08:36:37 +0000 (08:36 +0000)]
Obsolete version removed.

13 years agousing option '-treename HLTesdTree' for EsdCollector, adding default parameter for...
richterm [Thu, 18 Nov 2010 19:37:08 +0000 (19:37 +0000)]
using option '-treename HLTesdTree' for EsdCollector, adding default parameter for OCDB Uri

13 years agoadding option for setting a custom tree name
richterm [Thu, 18 Nov 2010 19:35:31 +0000 (19:35 +0000)]
adding option for setting a custom tree name

13 years agoadding support for custom tree names: option '-treename=name'
richterm [Thu, 18 Nov 2010 19:31:38 +0000 (19:31 +0000)]
adding support for custom tree names: option '-treename=name'
effective for local storage of HLT ESD files

13 years agoCleaning up, and fix filling of one step (Marta)
kleinb [Thu, 18 Nov 2010 19:24:49 +0000 (19:24 +0000)]
Cleaning up, and fix filling of one step (Marta)

13 years agoBackward compatibility restored.
policheh [Thu, 18 Nov 2010 18:42:19 +0000 (18:42 +0000)]
Backward compatibility restored.
If no RecoParameters found, use default non-linear correction.

13 years agoprintfs removed
policheh [Thu, 18 Nov 2010 18:40:10 +0000 (18:40 +0000)]
printfs removed

13 years agoAdded a new base class for common objects
pulvir [Thu, 18 Nov 2010 18:11:27 +0000 (18:11 +0000)]
Added a new base class for common objects

13 years agoAdding common base class for AliAnalysisEt and AliAnalysisHadEt so we are not repeati...
cnattras [Thu, 18 Nov 2010 17:58:18 +0000 (17:58 +0000)]
Adding common base class for AliAnalysisEt and AliAnalysisHadEt so we are not repeating code, added config files and options to config had code, updating alien handlers and task driver macros to include base class

13 years agoAdded two Get methods to get counters in histograms without drawing them (Philippe P.)
martinez [Thu, 18 Nov 2010 17:52:37 +0000 (17:52 +0000)]
Added two Get methods to get counters in histograms without drawing them (Philippe P.)

13 years agoMore documentation
cholm [Thu, 18 Nov 2010 15:08:09 +0000 (15:08 +0000)]
More documentation

13 years agoBug fix (Francesco)
dainese [Thu, 18 Nov 2010 15:00:46 +0000 (15:00 +0000)]
Bug fix (Francesco)

13 years agoAdded method to print cuts in a table format (ChiaraZ)
dainese [Thu, 18 Nov 2010 14:56:42 +0000 (14:56 +0000)]
Added method to print cuts in a table format (ChiaraZ)

13 years agoAdded reflection of errors about 0 in Draw method
dainese [Thu, 18 Nov 2010 14:45:38 +0000 (14:45 +0000)]
Added reflection of errors about 0 in Draw method

13 years agoNew TPC BetheBloch param for reco with 1-pad clusters (Rossella)
dainese [Thu, 18 Nov 2010 14:13:17 +0000 (14:13 +0000)]
New TPC BetheBloch param for reco with 1-pad clusters (Rossella)

13 years agoUpdate by Zaida
dainese [Thu, 18 Nov 2010 14:01:13 +0000 (14:01 +0000)]
Update by Zaida

1) the systematics uncertainties class: I added a TGrapAsymmErrors to plot the global asymmetric uncertainties and had to re-order the plotting again

2) the correction class :
-- the theoretical spectrum will now always be rebinned
-- the acc x eff statistical uncertainties propagation are temporarily neglected (commented out) until we will decide if we want them in

13 years agoFix compilation error (Chiara, Giacomo)
dainese [Thu, 18 Nov 2010 13:52:34 +0000 (13:52 +0000)]
Fix compilation error (Chiara, Giacomo)

13 years agoAdded new candles, helper methods and histos to count candidates vs multiplicity...
dainese [Thu, 18 Nov 2010 13:48:52 +0000 (13:48 +0000)]
Added new candles, helper methods and histos to count candidates vs multiplicity (Giacomo)

13 years ago- fix an if condition (Hege)
kkanaki [Thu, 18 Nov 2010 12:53:52 +0000 (12:53 +0000)]
- fix an if condition (Hege)

13 years agomake positive all mc labels from tracks
gconesab [Thu, 18 Nov 2010 12:06:47 +0000 (12:06 +0000)]
make positive all mc labels from tracks

13 years agoAdding the first version of the charge fluctuation analysis
pchrist [Thu, 18 Nov 2010 11:27:07 +0000 (11:27 +0000)]
Adding the first version of the charge fluctuation analysis

13 years agoupdates to reuse the code for azimuthal correlation studies
jgrosseo [Thu, 18 Nov 2010 10:22:02 +0000 (10:22 +0000)]
updates to reuse the code for azimuthal correlation studies

13 years agoFixed problems reported by alexander hansen
cholm [Thu, 18 Nov 2010 09:44:25 +0000 (09:44 +0000)]
Fixed problems reported by alexander hansen

13 years agoNew method for reading input files (taking fragmented files int account)
haavard [Thu, 18 Nov 2010 09:37:03 +0000 (09:37 +0000)]
New method for reading input files (taking fragmented files int account)

13 years agocorrect the way the clusterizer is initialized, depending on event type
gconesab [Wed, 17 Nov 2010 23:14:53 +0000 (23:14 +0000)]
correct the way the clusterizer is initialized, depending on event type

13 years agoMinor fixes
cholm [Wed, 17 Nov 2010 17:25:53 +0000 (17:25 +0000)]
Minor fixes

13 years agoFixes
cholm [Wed, 17 Nov 2010 15:04:18 +0000 (15:04 +0000)]
Fixes

13 years agocorrect compilation warnings
gconesab [Wed, 17 Nov 2010 14:55:29 +0000 (14:55 +0000)]
correct compilation warnings

13 years agoAdd new geometry option EMCAL_COMPLETEV1, with 10 SM for 2011 runs.
gconesab [Wed, 17 Nov 2010 14:13:59 +0000 (14:13 +0000)]
Add new geometry option EMCAL_COMPLETEV1, with 10 SM for 2011 runs.
Change sampling fraction for new geometry options with name containing V1.
Change X0 for depth calculation in accordance with defined material in geometry.

13 years agoNew PWG library
hristov [Wed, 17 Nov 2010 13:52:53 +0000 (13:52 +0000)]
New PWG library

13 years agofill trigger information in ESDs
gconesab [Wed, 17 Nov 2010 13:33:48 +0000 (13:33 +0000)]
fill trigger information in ESDs

13 years agoinput for unfolding is virtual cells or clusters, commit 2
gconesab [Wed, 17 Nov 2010 13:25:56 +0000 (13:25 +0000)]
input for unfolding is virtual cells or clusters, commit 2

13 years agoinput for unfolding is virtual cells or clusters
gconesab [Wed, 17 Nov 2010 13:21:44 +0000 (13:21 +0000)]
input for unfolding is virtual cells or clusters

13 years agochange delete of arrays per event by clear, set default geometry to FIRSTYEARV1
gconesab [Wed, 17 Nov 2010 12:46:51 +0000 (12:46 +0000)]
change delete of arrays per event by clear, set default geometry to FIRSTYEARV1

13 years ago- Fix of warnings which are not seen with the standard MakeFile
srossegg [Wed, 17 Nov 2010 12:31:43 +0000 (12:31 +0000)]
- Fix of warnings which are not seen with the standard MakeFile
- AltroEmulator: change of standard location for temporary (date) files

13 years agoAdding afterburner class for unfolding studies at the analysis level (Olga)
gconesab [Wed, 17 Nov 2010 12:24:50 +0000 (12:24 +0000)]
Adding afterburner class for unfolding studies at the analysis level (Olga)

13 years agoSuggestion given if the output object cannot be made available in Terminate
agheata [Wed, 17 Nov 2010 12:21:45 +0000 (12:21 +0000)]
Suggestion given if the output object cannot be made available in Terminate

13 years agoNew runs. (A. Toia)
morsch [Wed, 17 Nov 2010 11:59:55 +0000 (11:59 +0000)]
New runs. (A. Toia)

13 years agoImplementing methods to retrieve the best Cavern Pressure sensor values
zampolli [Wed, 17 Nov 2010 10:06:50 +0000 (10:06 +0000)]
Implementing methods to retrieve the best Cavern Pressure sensor values
(Haavard Helstrup).

13 years agoFix mismatched delete
kleinb [Wed, 17 Nov 2010 09:04:52 +0000 (09:04 +0000)]
Fix mismatched delete

13 years agoAdding options to count false decisions also.
aszostak [Wed, 17 Nov 2010 02:52:18 +0000 (02:52 +0000)]
Adding options to count false decisions also.

13 years agoformation time not added to vertex position
morsch [Wed, 17 Nov 2010 00:31:17 +0000 (00:31 +0000)]
formation time not added to vertex position