]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
16 years ago- AliAnalysisTask::OpenFile(i) opens and returns the file for the container
agheata [Tue, 4 Dec 2007 16:10:50 +0000 (16:10 +0000)]
- AliAnalysisTask::OpenFile(i) opens and returns the file for the container
connected at task output slot <i>. Works also in PROOF mode now.
- Added kSpecialOutput user-settable flag to AliAnalysisDataContainer. Output
containers that are to be dumped to a special file will be copied in PROOF mode from each
slave to a default remote location specified via AliAnalysisManager::SetSpecialOutputLocation()
File names will be prepended with the host name of the slave they were produced on.
One needs to open the special file in MyTask::CreateOutputObjects():
   OpenFile(iout_slot)
The files on the slaves will be closed by the system in SlaveTerminate phase.

Ex:
MyAnalysis.C
{
   mgr = new AliAnalysisManager("demo","");
   mgr->SetSpecialOutputLocation("root://lxb0000.cern.ch//alien/alice/"); // xrootd location
   MyTask *task = new MyTask();
   mgr->AddTask(task);
   // Create output container to be written in file sptree.root
   AliAnalysisDataContainer *coutput1 = mgr->CreateContainer("csp_tree", TTree::Class(), AliAnalysisManager::kOutputContainer, "sptree.root");
   coutput1->SetSpecialOutput();
   mgr->ConnectOutput(task,3,coutput1); // connect container to output #3 of MyTask
   ...
   mgr->StartAnalysis("proof", chain,...);
}

void MyTask::MyTask()
{
  ...
  DefineInput(3, TTree::Class());
  ...
}

void MyTask::CreateOutputObjects()
{
   ...
   TFile *f = OpenFile(3);
   ...
   fTreeOnOutput3 = new TTree(...)
}

void MyTask::Exec()
{
   ...   processing ...
   tree->Fill();
   PostData(3,tree);
}

16 years agoRemoving lines from the readme file
panos [Tue, 4 Dec 2007 15:51:48 +0000 (15:51 +0000)]
Removing lines from the readme file

16 years agoNew data fields needed for calculating the hardware efficiency of ITS modules (Andrea)
belikov [Tue, 4 Dec 2007 15:30:58 +0000 (15:30 +0000)]
New data fields needed for calculating the hardware efficiency of ITS modules (Andrea)

16 years agoLoading libPhysics needed in proof mode
agheata [Tue, 4 Dec 2007 14:29:01 +0000 (14:29 +0000)]
Loading libPhysics needed in proof mode

16 years agoNumerical protection (Marian)
belikov [Tue, 4 Dec 2007 14:26:20 +0000 (14:26 +0000)]
Numerical protection (Marian)

16 years ago- Added new input parameters in AliAnalysisManager::StartAnalysis(const char *type...
agheata [Tue, 4 Dec 2007 14:08:03 +0000 (14:08 +0000)]
- Added new input parameters in AliAnalysisManager::StartAnalysis(const char *type, TTree *tree, Int_t nentries, Int_t firstentry)
- System info (CPU and memory usage) can be collected every N events using AliAnalysisManager::SetNSysInfo(N)
Works only in local case. Two plots drawn based on the syswatch.log file. The full tree saved in syswatch.root file

16 years agoRemoving libraries that are not needed by default. Saves about 100 MBytes at start-up
cvetan [Tue, 4 Dec 2007 13:41:31 +0000 (13:41 +0000)]
Removing libraries that are not needed by default. Saves about 100 MBytes at start-up

16 years agoBetter ordering of the data members. Saves 4 bytes/cluster
cvetan [Tue, 4 Dec 2007 13:38:00 +0000 (13:38 +0000)]
Better ordering of the data members. Saves 4 bytes/cluster

16 years agoswicht to offline init
alla [Tue, 4 Dec 2007 13:34:59 +0000 (13:34 +0000)]
swicht to offline init

16 years agoRemoving par files
panos [Tue, 4 Dec 2007 12:47:07 +0000 (12:47 +0000)]
Removing par files

16 years agoCorrected code to visualize the ITS raw data. Subject to further changes
cvetan [Tue, 4 Dec 2007 12:42:12 +0000 (12:42 +0000)]
Corrected code to visualize the ITS raw data. Subject to further changes

16 years ago02-dec-2007 NvE New memberfunctions GetNstrings() introduced in IceEvent.
nick [Tue, 4 Dec 2007 12:35:33 +0000 (12:35 +0000)]
02-dec-2007 NvE New memberfunctions GetNstrings() introduced in IceEvent.
04-dec-2007 NvE New quality value based on both associated hits and strings introduced
                in IceDwalk. The user can select between various modes via the new
                memberfunction SetAsType().

16 years agonow QA not crash
alla [Tue, 4 Dec 2007 10:33:20 +0000 (10:33 +0000)]
now QA not crash

16 years agoUsing fast raw stream as option (Jens, Per-Thomas)
marian [Tue, 4 Dec 2007 09:42:01 +0000 (09:42 +0000)]
Using fast raw stream as option (Jens, Per-Thomas)

16 years agochange the setiing of pedestal subtraction
schutz [Mon, 3 Dec 2007 20:15:15 +0000 (20:15 +0000)]
change the setiing of pedestal subtraction

16 years agoAliAnalysisTask for AliAnalysisVertexingHF (Julien)
dainese [Mon, 3 Dec 2007 19:07:50 +0000 (19:07 +0000)]
AliAnalysisTask for AliAnalysisVertexingHF (Julien)

16 years agoAdding the classes to generate a par file (Marian)
marian [Mon, 3 Dec 2007 18:05:51 +0000 (18:05 +0000)]
Adding the classes to generate a par file (Marian)

16 years agoFix conversion problems
cblume [Mon, 3 Dec 2007 17:57:58 +0000 (17:57 +0000)]
Fix conversion problems

16 years agoAdding correct include files (Marian)
marian [Mon, 3 Dec 2007 17:27:09 +0000 (17:27 +0000)]
Adding correct include files (Marian)

16 years agoProper fix of a previous bug (see comment for rev. 1.2 of the implementation file...
masera [Mon, 3 Dec 2007 17:19:49 +0000 (17:19 +0000)]
Proper fix of a previous bug (see comment for rev. 1.2 of the implementation file). Different plots for online and offline applications (W. Ferrarese)

16 years agoAdding missing header file (Marian)
marian [Mon, 3 Dec 2007 17:17:57 +0000 (17:17 +0000)]
Adding missing header file (Marian)

16 years agoAdded info to method PrintStatus() (andrea)
dainese [Mon, 3 Dec 2007 17:15:54 +0000 (17:15 +0000)]
Added info to method PrintStatus() (andrea)

16 years agoSSD cluster finder adapted to work with several sensors at a time (one DDL) - E....
masera [Mon, 3 Dec 2007 17:07:16 +0000 (17:07 +0000)]
SSD cluster finder adapted to work with several sensors at a time (one DDL) - E. Fragiacomo

16 years agoSave root directory before opening file
kleinb [Mon, 3 Dec 2007 17:01:06 +0000 (17:01 +0000)]
Save root directory before opening file

16 years agoMoving the TPC calibration using tracks from separate directory to the TPC directory
marian [Mon, 3 Dec 2007 16:27:21 +0000 (16:27 +0000)]
Moving the TPC calibration using tracks from separate directory to the TPC directory
The TPC calibration will be compiled by default aliroot compilation (Marian)

16 years agoBug fix. The simulated ALTRO data are not compatible with the old RCU format
cvetan [Mon, 3 Dec 2007 16:15:53 +0000 (16:15 +0000)]
Bug fix. The simulated ALTRO data are not compatible with the old RCU format

16 years agoNew set of classes used to evaluate ITS plane efficiency. Presently the base class...
masera [Mon, 3 Dec 2007 16:11:08 +0000 (16:11 +0000)]
New set of classes used to evaluate ITS plane efficiency. Presently the base class and a first implementation for SPD are being committed (G. Bruno)

16 years agoBug fix
masera [Mon, 3 Dec 2007 15:48:02 +0000 (15:48 +0000)]
Bug fix

16 years agonew IsBad method to check whether a given ladder is completely dead (or noisy) or...
masera [Mon, 3 Dec 2007 14:47:09 +0000 (14:47 +0000)]
new IsBad method to check whether a given ladder is completely dead (or noisy) or not (D.Elia)

16 years agoMaking histograms browsable (Marian)
marian [Mon, 3 Dec 2007 14:31:14 +0000 (14:31 +0000)]
Making histograms browsable (Marian)

16 years ago- Files corresponding to output containers closed during Terminate()
agheata [Mon, 3 Dec 2007 14:06:33 +0000 (14:06 +0000)]
- Files corresponding to output containers closed during Terminate()
- In case no input handler is present the tree is loaded to avoid a crash in Notify()

16 years agoAdditioanl protection (Marian)
marian [Mon, 3 Dec 2007 13:59:11 +0000 (13:59 +0000)]
Additioanl protection (Marian)

For decay particles with 0 lifetime the
point angle is not calculated as it is
not defined

16 years agoConst method does not compile in case the DATE is installed
cvetan [Mon, 3 Dec 2007 13:43:52 +0000 (13:43 +0000)]
Const method does not compile in case the DATE is installed

16 years agoi)Adding the file containing the 5 TF1 objects to calculate the momentum dependent...
panos [Mon, 3 Dec 2007 13:20:58 +0000 (13:20 +0000)]
i)Adding the file containing the 5 TF1 objects to calculate the momentum dependent particle concentrations ii)Adding the README file that explains what the root file contains and how to use it

16 years agoWarning corrected.
morsch [Mon, 3 Dec 2007 12:56:42 +0000 (12:56 +0000)]
Warning corrected.

16 years agoUse fluka routine usrdci to get ion properties.
morsch [Mon, 3 Dec 2007 12:40:15 +0000 (12:40 +0000)]
Use fluka routine usrdci to get ion properties.

16 years agoIn assignment operator: added check for assignment to self
ivana [Mon, 3 Dec 2007 10:45:54 +0000 (10:45 +0000)]
In assignment operator: added check for assignment to self

16 years agoIn assignment operator: call Copy function only once
ivana [Mon, 3 Dec 2007 10:32:54 +0000 (10:32 +0000)]
In assignment operator: call Copy function only once
(thanks to Christian for pointing at this)

16 years ago- Set random seed to AliSimulation object and not gRandom
ivana [Mon, 3 Dec 2007 10:16:38 +0000 (10:16 +0000)]
- Set random seed to AliSimulation object and not gRandom
  (Philippe C.)
- Do not set run number explicetely;
  now it is completely handled by the framework.

16 years agoRemoving a compilation warning (Ivana)
belikov [Mon, 3 Dec 2007 09:53:51 +0000 (09:53 +0000)]
Removing a compilation warning (Ivana)

16 years agolookup table in txt
alla [Mon, 3 Dec 2007 09:25:21 +0000 (09:25 +0000)]
lookup table in txt

16 years agoStreaming allowed for selection data members (needed for passing values from the...
bhippoly [Sun, 2 Dec 2007 13:19:08 +0000 (13:19 +0000)]
Streaming allowed for selection data members (needed for passing values from the constructor in the macro to the worker node)

16 years agoRemove temporary hack that was needed to compile with HLT include files.
mtadel [Sun, 2 Dec 2007 06:10:05 +0000 (06:10 +0000)]
Remove temporary hack that was needed to compile with HLT include files.

16 years agobug fixed
alla [Sat, 1 Dec 2007 10:26:19 +0000 (10:26 +0000)]
bug fixed

16 years agoCoding conventions and minor changes
phille [Fri, 30 Nov 2007 22:51:06 +0000 (22:51 +0000)]
Coding conventions and minor changes

16 years agoNew classes for QA
ivana [Fri, 30 Nov 2007 19:36:26 +0000 (19:36 +0000)]
New classes for QA
(Christian)

16 years agoCoding rule violations corrected.
morsch [Fri, 30 Nov 2007 19:23:00 +0000 (19:23 +0000)]
Coding rule violations corrected.

16 years agoAdded one parameter to function Fit, to avoid searching objects via gROOT
ivana [Fri, 30 Nov 2007 17:25:42 +0000 (17:25 +0000)]
Added one parameter to function Fit,  to avoid searching objects via gROOT
by their name
(Sasha)

16 years ago- Removed obsolete data members;
ivana [Fri, 30 Nov 2007 17:25:20 +0000 (17:25 +0000)]
- Removed obsolete data members;
- Added 2 new data members; changed parameters of some functions
  to avoid searching objects via gROOT by their name
(Sasha)

16 years agoQA Data maker for RAW
alla [Fri, 30 Nov 2007 17:06:18 +0000 (17:06 +0000)]
QA Data maker for RAW

16 years agoBug fix (F. Prino)
masera [Fri, 30 Nov 2007 16:44:59 +0000 (16:44 +0000)]
Bug fix (F. Prino)

16 years agoDo not call SetDefaults in AliITS::Init
masera [Fri, 30 Nov 2007 16:44:42 +0000 (16:44 +0000)]
Do not call SetDefaults in AliITS::Init

16 years agoAdding comments for inline functions
ivana [Fri, 30 Nov 2007 16:41:06 +0000 (16:41 +0000)]
Adding comments for inline functions
(Hermine)

16 years agoAdding destructor to avoid problems in the Root garbage collector
hristov [Fri, 30 Nov 2007 16:39:14 +0000 (16:39 +0000)]
Adding destructor to avoid problems in the Root garbage collector

16 years agoBug fix (temporary). AliLog used instead of direct printouts
masera [Fri, 30 Nov 2007 16:33:01 +0000 (16:33 +0000)]
Bug fix (temporary). AliLog used instead of direct printouts

16 years agomember functions comments changed from capital letters to normal text (Philippe C.)
pcrochet [Fri, 30 Nov 2007 16:31:48 +0000 (16:31 +0000)]
member functions comments changed from capital letters to normal text (Philippe C.)

16 years agoadd comments in member functions (Philippe C.)
pcrochet [Fri, 30 Nov 2007 16:31:46 +0000 (16:31 +0000)]
add comments in member functions (Philippe C.)

16 years agoAdded new message type "Unknown alias/DP" (type n. 7)
acolla [Fri, 30 Nov 2007 16:25:37 +0000 (16:25 +0000)]
Added new message type "Unknown alias/DP" (type n. 7)
Updated server error code schema

Started implementing keepAlive message handling

16 years ago- Modified the class AliMUONRecoParam to inherit from the new bass
ivana [Fri, 30 Nov 2007 16:25:19 +0000 (16:25 +0000)]
- Modified the class AliMUONRecoParam to inherit from the new bass
  class AliDetectorRecoParam
- Use the base class AliRecoParam to handle the class AliMUONRecoParam
(Philippe P.)

16 years agoRemoving unused class.
ivana [Fri, 30 Nov 2007 15:58:25 +0000 (15:58 +0000)]
Removing unused class.
(Philippe P.)

16 years agoReintroduce the ADC threshold as a temporary fix for the digits file size problem
cblume [Fri, 30 Nov 2007 15:18:14 +0000 (15:18 +0000)]
Reintroduce the ADC threshold as a temporary fix for the digits file size problem

16 years agoOnly do QA for detectors for which local reconstruction is requested
schutz [Fri, 30 Nov 2007 14:53:48 +0000 (14:53 +0000)]
Only do QA for detectors for which local reconstruction is requested

16 years agoRemoved AddDirectory setting
schutz [Fri, 30 Nov 2007 14:53:05 +0000 (14:53 +0000)]
Removed AddDirectory setting

16 years agoAvoid to open already opened files
schutz [Fri, 30 Nov 2007 14:51:26 +0000 (14:51 +0000)]
Avoid to open already opened files

16 years agoPad volumes found
dibari [Fri, 30 Nov 2007 14:46:19 +0000 (14:46 +0000)]
Pad volumes found

16 years agoBug fix (A.Dainese)
belikov [Fri, 30 Nov 2007 13:44:12 +0000 (13:44 +0000)]
Bug fix (A.Dainese)

16 years agoList of changes: 1) pseudo clusters removed, 2) AliESDCaloCells filled, 3) Fill new...
gustavo [Fri, 30 Nov 2007 13:41:05 +0000 (13:41 +0000)]
List of changes: 1) pseudo clusters removed, 2) AliESDCaloCells filled, 3) Fill new AliESDCaloCluster methods, 4) Remove debug messages from reconstruction by default

16 years agoRemoving unused class AliMUONPixel
ivana [Fri, 30 Nov 2007 13:38:51 +0000 (13:38 +0000)]
Removing unused class AliMUONPixel
(Sasha)

16 years agoBefore setting PID parameters, set all to 0
gustavo [Fri, 30 Nov 2007 13:31:35 +0000 (13:31 +0000)]
Before setting PID parameters, set all to 0

16 years agoBug in parameters initialization loop
gustavo [Fri, 30 Nov 2007 13:29:50 +0000 (13:29 +0000)]
Bug in parameters initialization loop

16 years agoUpdated documentation (Christian)
ivana [Fri, 30 Nov 2007 13:18:38 +0000 (13:18 +0000)]
Updated documentation (Christian)

16 years agoAnd some more cleanup
cblume [Fri, 30 Nov 2007 11:13:38 +0000 (11:13 +0000)]
And some more cleanup

16 years agoChanges suggested by Sylvain
coppedis [Fri, 30 Nov 2007 10:35:22 +0000 (10:35 +0000)]
Changes suggested by Sylvain

16 years agoAdded description of MUONStatusMap.C macro
ivana [Fri, 30 Nov 2007 10:26:46 +0000 (10:26 +0000)]
Added description of MUONStatusMap.C macro
(Laurent)

16 years agoCommented out writing on ESD file (in destructor)
ivana [Fri, 30 Nov 2007 10:23:44 +0000 (10:23 +0000)]
Commented out writing on ESD file (in destructor)
(Diego)

16 years agoAccess to particle index. (S. Arcelli)
morsch [Fri, 30 Nov 2007 10:22:16 +0000 (10:22 +0000)]
Access to particle index. (S. Arcelli)
Access to TParticle.

16 years agofCaliData in data member initialization list
gustavo [Fri, 30 Nov 2007 09:09:15 +0000 (09:09 +0000)]
fCaliData in data member initialization list

16 years agoCosmetics, init values provided in c'tor
kleinb [Fri, 30 Nov 2007 07:42:50 +0000 (07:42 +0000)]
Cosmetics, init values provided in c'tor

16 years agoSome code cleanup
cblume [Thu, 29 Nov 2007 21:18:30 +0000 (21:18 +0000)]
Some code cleanup

16 years agocoding violations
cblume [Thu, 29 Nov 2007 18:58:29 +0000 (18:58 +0000)]
coding violations

16 years agoRemoving not needed include (AliMpDEManager.h)
ivana [Thu, 29 Nov 2007 18:36:13 +0000 (18:36 +0000)]
Removing not needed include (AliMpDEManager.h)

16 years agoAdded MUONCheckMisAligner.C macro description
ivana [Thu, 29 Nov 2007 18:35:56 +0000 (18:35 +0000)]
Added MUONCheckMisAligner.C macro description
(by just pasting the comments from the macro here)

16 years agoCorrected the name of MUONplotefficiency.C macro, to get it hyperlinked
ivana [Thu, 29 Nov 2007 18:35:43 +0000 (18:35 +0000)]
Corrected the name of MUONplotefficiency.C macro, to get it hyperlinked
in the documentation

16 years agoFixes to get the macro compiling
ivana [Thu, 29 Nov 2007 18:35:30 +0000 (18:35 +0000)]
Fixes to get the macro compiling

16 years agoFixes to get the macro compiling again
ivana [Thu, 29 Nov 2007 18:35:06 +0000 (18:35 +0000)]
Fixes to get the macro compiling again
(Laurent)

16 years agocoding violations
cblume [Thu, 29 Nov 2007 18:13:40 +0000 (18:13 +0000)]
coding violations

16 years agoModification for DA (Christian Lippmann)
marian [Thu, 29 Nov 2007 17:34:41 +0000 (17:34 +0000)]
Modification for DA (Christian Lippmann)

1) AliTPCmapper: The instance of AliTPCROC in the class caused troubles
   when retrieving the mapper object from a root file.

2) AliTPCCalibPedestal: Added a setter for the mapping used by the
   RawStream.

3) TPCPEDESTALda.cxx: Many updates and bugfixes. This version vcan be
   used for december runs. Uses the updated mapper and calibPedestal
   objects.

16 years agoplitting of drift speed (updated at every physics run) from other calibration paramet...
masera [Thu, 29 Nov 2007 17:14:44 +0000 (17:14 +0000)]
plitting of drift speed (updated at every physics run) from other calibration parameters (updated at every calibration run) - F. Prino

16 years agoMake warning stronger!
markus [Thu, 29 Nov 2007 17:01:18 +0000 (17:01 +0000)]
Make warning stronger!

16 years agoDummy methods DefineParticle required by the interface added.
morsch [Thu, 29 Nov 2007 14:04:07 +0000 (14:04 +0000)]
Dummy methods DefineParticle required by the interface added.
(I. Hrivnacova)

16 years agoExample macros to extend or reduce the standard AOD content.
markus [Thu, 29 Nov 2007 13:53:04 +0000 (13:53 +0000)]
Example macros to extend or reduce the standard AOD content.

16 years agoThe class version had to be incremented in 1.11
hristov [Thu, 29 Nov 2007 13:46:49 +0000 (13:46 +0000)]
The class version had to be incremented in 1.11

16 years agoFunctionality to remove objects from list added.
markus [Thu, 29 Nov 2007 13:36:47 +0000 (13:36 +0000)]
Functionality to remove objects from list added.

16 years agoCheck for missing file.
markus [Thu, 29 Nov 2007 13:35:55 +0000 (13:35 +0000)]
Check for missing file.

16 years agoInfo on hits added
dibari [Thu, 29 Nov 2007 13:28:27 +0000 (13:28 +0000)]
Info on hits added

16 years agoClasses for Quality Assurance. Presently only SDD is monitored. (Cerello, Ferrarese...
masera [Thu, 29 Nov 2007 12:02:04 +0000 (12:02 +0000)]
Classes for Quality Assurance. Presently only SDD is monitored. (Cerello, Ferrarese, Siciliano)

16 years agoLoops up to 5
kleinb [Thu, 29 Nov 2007 11:36:13 +0000 (11:36 +0000)]
Loops up to 5

16 years agoMake fZDCEMEnergy Double_t aigain, change to array breaks backward comp. when reading...
kleinb [Thu, 29 Nov 2007 11:26:43 +0000 (11:26 +0000)]
Make fZDCEMEnergy Double_t aigain, change to array breaks backward comp. when reading non-zero values

16 years agoAdded protection against missing calo cell informatino in ESD in order to stay backwa...
markus [Thu, 29 Nov 2007 10:09:29 +0000 (10:09 +0000)]
Added protection against missing calo cell informatino in ESD in order to stay backward compatible.

16 years agoFix compiler warnings
cblume [Thu, 29 Nov 2007 09:48:58 +0000 (09:48 +0000)]
Fix compiler warnings