]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
16 years agoNew file to be read during reconstruction
zampolli [Wed, 5 Dec 2007 13:59:12 +0000 (13:59 +0000)]
New file to be read during reconstruction

16 years agoremoval of old file
zampolli [Wed, 5 Dec 2007 13:57:39 +0000 (13:57 +0000)]
removal of old file

16 years agoInitialization bug fixed.
zampolli [Wed, 5 Dec 2007 13:55:18 +0000 (13:55 +0000)]
Initialization bug fixed.

16 years agoCoding conventions...
cvetan [Wed, 5 Dec 2007 13:41:21 +0000 (13:41 +0000)]
Coding conventions...

16 years agoMagic line from Rene in order to avoid I/O crash in case of inexisting ROOTSYS. The...
cvetan [Wed, 5 Dec 2007 13:15:50 +0000 (13:15 +0000)]
Magic line from Rene in order to avoid I/O crash in case of inexisting ROOTSYS. The size of the histograms is reduced, because it was allocating too much memory

16 years agoloading libANALYSIS.so
dainese [Wed, 5 Dec 2007 13:14:00 +0000 (13:14 +0000)]
loading libANALYSIS.so

16 years agoadding function to retrieve eta from tracklets
jgrosseo [Wed, 5 Dec 2007 12:57:20 +0000 (12:57 +0000)]
adding function to retrieve eta from tracklets

16 years agoAdding the required documentation fields
cvetan [Wed, 5 Dec 2007 12:37:27 +0000 (12:37 +0000)]
Adding the required documentation fields

16 years agoObsolete code
cvetan [Wed, 5 Dec 2007 12:36:54 +0000 (12:36 +0000)]
Obsolete code

16 years agotypo fixed: HMP_DET/HMP_ENV/HMP_ENV_TENV.actual.value
acolla [Wed, 5 Dec 2007 11:32:24 +0000 (11:32 +0000)]
typo fixed: HMP_DET/HMP_ENV/HMP_ENV_TENV.actual.value

16 years agochanged order of arguments to TMonaLisaWriter
jgrosseo [Wed, 5 Dec 2007 10:45:19 +0000 (10:45 +0000)]
changed order of arguments to TMonaLisaWriter

16 years agoupdates for running beamtest analysis within AliRoot - minor bug fixes still need...
jklay [Wed, 5 Dec 2007 06:51:06 +0000 (06:51 +0000)]
updates for running beamtest analysis within AliRoot - minor bug fixes still need investigating

16 years agomodification to read Altro mappings into AliEMCALRecParam and pass to AliEMCALRawUtil...
jklay [Wed, 5 Dec 2007 02:30:51 +0000 (02:30 +0000)]
modification to read Altro mappings into AliEMCALRecParam and pass to AliEMCALRawUtils from AliEMCALReconstructor; add option to AliEMCALRawUtils to set old RCU format (for testbeam) or not

16 years agoimplemented copy constructor (protected)
masera [Tue, 4 Dec 2007 18:54:07 +0000 (18:54 +0000)]
implemented copy constructor (protected)

16 years agoadded generation of trigger map
jgrosseo [Tue, 4 Dec 2007 18:36:47 +0000 (18:36 +0000)]
added generation of trigger map

16 years agoremoving PWG0depHelper
jgrosseo [Tue, 4 Dec 2007 18:35:26 +0000 (18:35 +0000)]
removing PWG0depHelper
moved dNdEta analysis to task

16 years agorewrote task, no defines needed anymore
jgrosseo [Tue, 4 Dec 2007 18:33:31 +0000 (18:33 +0000)]
rewrote task, no defines needed anymore

16 years agoadding contamination and mb-comparison study
jgrosseo [Tue, 4 Dec 2007 18:32:08 +0000 (18:32 +0000)]
adding contamination and mb-comparison study

16 years agoadding trigger statistics
jgrosseo [Tue, 4 Dec 2007 18:31:42 +0000 (18:31 +0000)]
adding trigger statistics

16 years agofading out dependent helper (AliPWG0depHelper)
jgrosseo [Tue, 4 Dec 2007 18:24:47 +0000 (18:24 +0000)]
fading out dependent helper (AliPWG0depHelper)
moving from selectors to tasks

16 years agoAdding a high performance decoder for DDL palyoad decoding of tracker DDL streams.
szostak [Tue, 4 Dec 2007 17:43:36 +0000 (17:43 +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.

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