jgrosseo [Tue, 4 Dec 2007 18:36:47 +0000]
added generation of trigger map
jgrosseo [Tue, 4 Dec 2007 18:35:26 +0000]
removing PWG0depHelper
moved dNdEta analysis to task
jgrosseo [Tue, 4 Dec 2007 18:33:31 +0000]
rewrote task, no defines needed anymore
jgrosseo [Tue, 4 Dec 2007 18:32:08 +0000]
adding contamination and mb-comparison study
jgrosseo [Tue, 4 Dec 2007 18:31:42 +0000]
adding trigger statistics
jgrosseo [Tue, 4 Dec 2007 18:24:47 +0000]
fading out dependent helper (AliPWG0depHelper)
moving from selectors to tasks
szostak [Tue, 4 Dec 2007 17:43:36 +0000]
Adding a high performance decoder for DDL palyoad decoding of tracker DDL streams.
This will hopefully be moved to MUON/ soon, but we just could not wait any longer and require this code in the CVS now.
agheata [Tue, 4 Dec 2007 16:10:50 +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);
}
panos [Tue, 4 Dec 2007 15:51:48 +0000]
Removing lines from the readme file
belikov [Tue, 4 Dec 2007 15:30:58 +0000]
New data fields needed for calculating the hardware efficiency of ITS modules (Andrea)
agheata [Tue, 4 Dec 2007 14:29:01 +0000]
Loading libPhysics needed in proof mode
belikov [Tue, 4 Dec 2007 14:26:20 +0000]
Numerical protection (Marian)
agheata [Tue, 4 Dec 2007 14:08:03 +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
cvetan [Tue, 4 Dec 2007 13:41:31 +0000]
Removing libraries that are not needed by default. Saves about 100 MBytes at start-up
cvetan [Tue, 4 Dec 2007 13:38:00 +0000]
Better ordering of the data members. Saves 4 bytes/cluster
alla [Tue, 4 Dec 2007 13:34:59 +0000]
swicht to offline init
panos [Tue, 4 Dec 2007 12:47:07 +0000]
Removing par files
cvetan [Tue, 4 Dec 2007 12:42:12 +0000]
Corrected code to visualize the ITS raw data. Subject to further changes
nick [Tue, 4 Dec 2007 12:35:33 +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().
alla [Tue, 4 Dec 2007 10:33:20 +0000]
now QA not crash
marian [Tue, 4 Dec 2007 09:42:01 +0000]
Using fast raw stream as option (Jens, Per-Thomas)
schutz [Mon, 3 Dec 2007 20:15:15 +0000]
change the setiing of pedestal subtraction
dainese [Mon, 3 Dec 2007 19:07:50 +0000]
AliAnalysisTask for AliAnalysisVertexingHF (Julien)
marian [Mon, 3 Dec 2007 18:05:51 +0000]
Adding the classes to generate a par file (Marian)
cblume [Mon, 3 Dec 2007 17:57:58 +0000]
Fix conversion problems
marian [Mon, 3 Dec 2007 17:27:09 +0000]
Adding correct include files (Marian)
masera [Mon, 3 Dec 2007 17:19:49 +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)
marian [Mon, 3 Dec 2007 17:17:57 +0000]
Adding missing header file (Marian)
dainese [Mon, 3 Dec 2007 17:15:54 +0000]
Added info to method PrintStatus() (andrea)
masera [Mon, 3 Dec 2007 17:07:16 +0000]
SSD cluster finder adapted to work with several sensors at a time (one DDL) - E. Fragiacomo
kleinb [Mon, 3 Dec 2007 17:01:06 +0000]
Save root directory before opening file
marian [Mon, 3 Dec 2007 16:27:21 +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)
cvetan [Mon, 3 Dec 2007 16:15:53 +0000]
Bug fix. The simulated ALTRO data are not compatible with the old RCU format
masera [Mon, 3 Dec 2007 16:11:08 +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)
masera [Mon, 3 Dec 2007 15:48:02 +0000]
Bug fix
masera [Mon, 3 Dec 2007 14:47:09 +0000]
new IsBad method to check whether a given ladder is completely dead (or noisy) or not (D.Elia)
marian [Mon, 3 Dec 2007 14:31:14 +0000]
Making histograms browsable (Marian)
agheata [Mon, 3 Dec 2007 14:06:33 +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()
marian [Mon, 3 Dec 2007 13:59:11 +0000]
Additioanl protection (Marian)
For decay particles with 0 lifetime the
point angle is not calculated as it is
not defined
cvetan [Mon, 3 Dec 2007 13:43:52 +0000]
Const method does not compile in case the DATE is installed
panos [Mon, 3 Dec 2007 13:20:58 +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
morsch [Mon, 3 Dec 2007 12:56:42 +0000]
Warning corrected.
morsch [Mon, 3 Dec 2007 12:40:15 +0000]
Use fluka routine usrdci to get ion properties.
ivana [Mon, 3 Dec 2007 10:45:54 +0000]
In assignment operator: added check for assignment to self
ivana [Mon, 3 Dec 2007 10:32:54 +0000]
In assignment operator: call Copy function only once
(thanks to Christian for pointing at this)
ivana [Mon, 3 Dec 2007 10:16:38 +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.
belikov [Mon, 3 Dec 2007 09:53:51 +0000]
Removing a compilation warning (Ivana)
alla [Mon, 3 Dec 2007 09:25:21 +0000]
lookup table in txt
bhippoly [Sun, 2 Dec 2007 13:19:08 +0000]
Streaming allowed for selection data members (needed for passing values from the constructor in the macro to the worker node)
mtadel [Sun, 2 Dec 2007 06:10:05 +0000]
Remove temporary hack that was needed to compile with HLT include files.
alla [Sat, 1 Dec 2007 10:26:19 +0000]
bug fixed
phille [Fri, 30 Nov 2007 22:51:06 +0000]
Coding conventions and minor changes
ivana [Fri, 30 Nov 2007 19:36:26 +0000]
New classes for QA
(Christian)
morsch [Fri, 30 Nov 2007 19:23:00 +0000]
Coding rule violations corrected.
ivana [Fri, 30 Nov 2007 17:25:42 +0000]
Added one parameter to function Fit, to avoid searching objects via gROOT
by their name
(Sasha)
ivana [Fri, 30 Nov 2007 17:25:20 +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)
alla [Fri, 30 Nov 2007 17:06:18 +0000]
QA Data maker for RAW
masera [Fri, 30 Nov 2007 16:44:59 +0000]
Bug fix (F. Prino)
masera [Fri, 30 Nov 2007 16:44:42 +0000]
Do not call SetDefaults in AliITS::Init
ivana [Fri, 30 Nov 2007 16:41:06 +0000]
Adding comments for inline functions
(Hermine)
hristov [Fri, 30 Nov 2007 16:39:14 +0000]
Adding destructor to avoid problems in the Root garbage collector
masera [Fri, 30 Nov 2007 16:33:01 +0000]
Bug fix (temporary). AliLog used instead of direct printouts
pcrochet [Fri, 30 Nov 2007 16:31:48 +0000]
member functions comments changed from capital letters to normal text (Philippe C.)
pcrochet [Fri, 30 Nov 2007 16:31:46 +0000]
add comments in member functions (Philippe C.)
acolla [Fri, 30 Nov 2007 16:25:37 +0000]
Added new message type "Unknown alias/DP" (type n. 7)
Updated server error code schema
Started implementing keepAlive message handling
ivana [Fri, 30 Nov 2007 16:25:19 +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.)
ivana [Fri, 30 Nov 2007 15:58:25 +0000]
Removing unused class.
(Philippe P.)
cblume [Fri, 30 Nov 2007 15:18:14 +0000]
Reintroduce the ADC threshold as a temporary fix for the digits file size problem
schutz [Fri, 30 Nov 2007 14:53:48 +0000]
Only do QA for detectors for which local reconstruction is requested
schutz [Fri, 30 Nov 2007 14:53:05 +0000]
Removed AddDirectory setting
schutz [Fri, 30 Nov 2007 14:51:26 +0000]
Avoid to open already opened files
dibari [Fri, 30 Nov 2007 14:46:19 +0000]
Pad volumes found
belikov [Fri, 30 Nov 2007 13:44:12 +0000]
Bug fix (A.Dainese)
gustavo [Fri, 30 Nov 2007 13:41:05 +0000]
List of changes: 1) pseudo clusters removed, 2) AliESDCaloCells filled, 3) Fill new AliESDCaloCluster methods, 4) Remove debug messages from reconstruction by default
ivana [Fri, 30 Nov 2007 13:38:51 +0000]
Removing unused class AliMUONPixel
(Sasha)
gustavo [Fri, 30 Nov 2007 13:31:35 +0000]
Before setting PID parameters, set all to 0
gustavo [Fri, 30 Nov 2007 13:29:50 +0000]
Bug in parameters initialization loop
ivana [Fri, 30 Nov 2007 13:18:38 +0000]
Updated documentation (Christian)
cblume [Fri, 30 Nov 2007 11:13:38 +0000]
And some more cleanup
coppedis [Fri, 30 Nov 2007 10:35:22 +0000]
Changes suggested by Sylvain
ivana [Fri, 30 Nov 2007 10:26:46 +0000]
Added description of MUONStatusMap.C macro
(Laurent)
ivana [Fri, 30 Nov 2007 10:23:44 +0000]
Commented out writing on ESD file (in destructor)
(Diego)
morsch [Fri, 30 Nov 2007 10:22:16 +0000]
Access to particle index. (S. Arcelli)
Access to TParticle.
gustavo [Fri, 30 Nov 2007 09:09:15 +0000]
fCaliData in data member initialization list
kleinb [Fri, 30 Nov 2007 07:42:50 +0000]
Cosmetics, init values provided in c'tor
cblume [Thu, 29 Nov 2007 21:18:30 +0000]
Some code cleanup
cblume [Thu, 29 Nov 2007 18:58:29 +0000]
coding violations
ivana [Thu, 29 Nov 2007 18:36:13 +0000]
Removing not needed include (AliMpDEManager.h)
ivana [Thu, 29 Nov 2007 18:35:56 +0000]
Added MUONCheckMisAligner.C macro description
(by just pasting the comments from the macro here)
ivana [Thu, 29 Nov 2007 18:35:43 +0000]
Corrected the name of MUONplotefficiency.C macro, to get it hyperlinked
in the documentation
ivana [Thu, 29 Nov 2007 18:35:30 +0000]
Fixes to get the macro compiling
ivana [Thu, 29 Nov 2007 18:35:06 +0000]
Fixes to get the macro compiling again
(Laurent)
cblume [Thu, 29 Nov 2007 18:13:40 +0000]
coding violations
marian [Thu, 29 Nov 2007 17:34:41 +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.
masera [Thu, 29 Nov 2007 17:14:44 +0000]
plitting of drift speed (updated at every physics run) from other calibration parameters (updated at every calibration run) - F. Prino
markus [Thu, 29 Nov 2007 17:01:18 +0000]
Make warning stronger!
morsch [Thu, 29 Nov 2007 14:04:07 +0000]
Dummy methods DefineParticle required by the interface added.
(I. Hrivnacova)
markus [Thu, 29 Nov 2007 13:53:04 +0000]
Example macros to extend or reduce the standard AOD content.
hristov [Thu, 29 Nov 2007 13:46:49 +0000]
The class version had to be incremented in 1.11
markus [Thu, 29 Nov 2007 13:36:47 +0000]
Functionality to remove objects from list added.