]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
16 years agoIntroducing a Kalman-Filter-like straight-line fitter to the set of alignment classes
belikov [Wed, 2 May 2007 12:37:29 +0000 (12:37 +0000)]
Introducing a Kalman-Filter-like straight-line fitter to the set of alignment classes

16 years ago The method LocalInit() may be implemented to call locally (on the client)
agheata [Wed, 2 May 2007 12:13:59 +0000 (12:13 +0000)]
   The method LocalInit() may be implemented to call locally (on the client)
all initialization methods of the class. It is not mandatory and was created
in order to minimize the complexity and readability of the analysis macro.
DO NOT create in this method the histigrams or task output objects that will
go in the task output containers. Use CreateOutputObjects() method for that.

16 years agofixed return value for Notify()
agheata [Wed, 2 May 2007 11:56:07 +0000 (11:56 +0000)]
fixed return value for Notify()

16 years agoStandard connection to ESD in chain.
morsch [Wed, 2 May 2007 10:53:03 +0000 (10:53 +0000)]
Standard connection to ESD in chain.

16 years ago- New class AliAnalysisDataWrapper used for streaming output results from PROOF to
agheata [Wed, 2 May 2007 08:26:22 +0000 (08:26 +0000)]
- New class AliAnalysisDataWrapper used for streaming output results from PROOF to
local client. The class is just a data wrapper that implements Merge() method.
Wrappers have the same name as the data containers exporting the data, which is then
imported by the corresponding container on the client. Used only on PROOF mode
does not provide any user API (framework utility). This fixes current streaming
in PROOF mode.
- All input tree branches are disabled. Analysis tasks should connect to needed
branches inside MyTask::ConnectInputData() by testing first if the branch address
is already taken, then calling SetBranchAddress():
    char ** address = (char **)GetBranchAddress(0, "ESD");
    if (address)
    {
      fESD = (AliESD*)(*address);
    }
    else
    {
      fESD = new AliESD();
      SetBranchAddress(0, "ESD", &fESD); // first task taking the branch enables it
    }
- virtual AliAnalysisTask::Notify() implemented. This method should be implemented
by the derived user task only if current chain file changes need to be treated.
Used currently by AliAnalysisTaskRL class to handle correclty AliRunLoader pointer.
- Methods: MyTask::CreateOutputObjects() and MyTask::Terminate() now called also
for non-event loop tasks (e.g. fitting).

16 years agoBug fix in method RefitAt: the cluster with index 0 was rejected (A. Dainese)
masera [Wed, 2 May 2007 07:10:23 +0000 (07:10 +0000)]
Bug fix in method RefitAt: the cluster with index 0 was rejected (A. Dainese)

16 years agochanges in the code
bnandi [Wed, 2 May 2007 04:09:06 +0000 (04:09 +0000)]
changes in the code

16 years agoCoding conventions
phille [Tue, 1 May 2007 23:54:06 +0000 (23:54 +0000)]
Coding conventions

16 years agoCoding conventions
phille [Tue, 1 May 2007 23:36:21 +0000 (23:36 +0000)]
Coding conventions

16 years agoAdded new files to aliroot build system
phille [Tue, 1 May 2007 22:45:07 +0000 (22:45 +0000)]
Added new files to aliroot build system

16 years agoStructure to hold decoded altro raw data for a single channel
phille [Tue, 1 May 2007 22:18:32 +0000 (22:18 +0000)]
Structure to hold decoded  altro raw data for a single channel

16 years agoCoding conventions & cleanup of obsolete code
phille [Tue, 1 May 2007 22:17:05 +0000 (22:17 +0000)]
Coding conventions & cleanup of obsolete code

16 years agoNew datatype for channnel raw data
phille [Tue, 1 May 2007 22:16:15 +0000 (22:16 +0000)]
New datatype for channnel raw data

16 years agoCoding conventions
phille [Tue, 1 May 2007 22:15:39 +0000 (22:15 +0000)]
Coding conventions

16 years agoComponent to just decode the dat rom the DDLS and then dump the results
phille [Tue, 1 May 2007 22:15:09 +0000 (22:15 +0000)]
Component to just decode the dat rom the DDLS and then dump the results
to sherd memory. Used for raw data displa at the HLT

16 years agoStructure to hold raw data samples from the altro for one RCU (2x28x32 channels)
phille [Tue, 1 May 2007 22:12:42 +0000 (22:12 +0000)]
Structure to hold raw data samples from the altro for one RCU (2x28x32  channels)

16 years agoCoding conventions
phille [Tue, 1 May 2007 19:46:07 +0000 (19:46 +0000)]
Coding conventions

16 years agoChanged dynamic range for SDigits to 2 TeV (integer with 10^6 * E [GeV])
mvl [Tue, 1 May 2007 16:22:15 +0000 (16:22 +0000)]
Changed dynamic range for SDigits to 2 TeV (integer with 10^6 * E [GeV])

16 years agoChanged default dynamic range to 250 GeV
mvl [Tue, 1 May 2007 16:21:05 +0000 (16:21 +0000)]
Changed default dynamic range to 250 GeV

16 years agoChanged dynamic range to 250 GeV
mvl [Tue, 1 May 2007 16:19:14 +0000 (16:19 +0000)]
Changed dynamic range to 250 GeV

16 years agoCoding conventions
phille [Tue, 1 May 2007 15:20:02 +0000 (15:20 +0000)]
Coding conventions

16 years agodisable thread support for hough tracking, DAs are supposed to be single threaded
richterm [Tue, 1 May 2007 14:35:34 +0000 (14:35 +0000)]
disable thread support for hough tracking, DAs are supposed to be single threaded

16 years agoRaw data display at the HLT
phille [Mon, 30 Apr 2007 22:49:33 +0000 (22:49 +0000)]
Raw data display at the HLT

16 years agohopefully the last refinements for correct type conversion in calibration
arcelli [Mon, 30 Apr 2007 19:02:24 +0000 (19:02 +0000)]
hopefully the last refinements for correct type conversion in calibration

16 years agohopefully the last refinements for correct type conversion in miscalibration
arcelli [Mon, 30 Apr 2007 19:02:11 +0000 (19:02 +0000)]
hopefully the last refinements for correct type conversion in miscalibration

16 years agoremove a residual Float_t conversion
arcelli [Mon, 30 Apr 2007 19:01:20 +0000 (19:01 +0000)]
remove a residual Float_t conversion

16 years agoadding second trigger definition to function IsEventTriggered
jgrosseo [Mon, 30 Apr 2007 15:31:56 +0000 (15:31 +0000)]
adding second trigger definition to function IsEventTriggered
function to add aliroot include path on proof cluster

16 years agoremove AliTOFV4T0
arcelli [Mon, 30 Apr 2007 15:25:44 +0000 (15:25 +0000)]
remove AliTOFV4T0

16 years agoremove AliTOFGeometryV4
arcelli [Mon, 30 Apr 2007 15:25:23 +0000 (15:25 +0000)]
remove AliTOFGeometryV4

16 years agoNew version of the hybrid geometry: fixes to SDD simulation (L.Gaudichet)
masera [Mon, 30 Apr 2007 15:24:10 +0000 (15:24 +0000)]
New version of the hybrid geometry: fixes to SDD simulation (L.Gaudichet)

16 years agoChange TOF digit Time, Tot etc to int type
arcelli [Mon, 30 Apr 2007 15:22:31 +0000 (15:22 +0000)]
Change TOF digit Time, Tot etc to int type

16 years agoqa28 invisible
morsch [Mon, 30 Apr 2007 12:25:38 +0000 (12:25 +0000)]
qa28 invisible

16 years agokAirHigh added
morsch [Mon, 30 Apr 2007 12:24:59 +0000 (12:24 +0000)]
kAirHigh added

16 years agoUpdates to fetch the restricted spectra in TOF/data/spectrum.root
arcelli [Mon, 30 Apr 2007 10:32:00 +0000 (10:32 +0000)]
Updates to fetch the restricted spectra in TOF/data/spectrum.root

16 years agoUpdates to fetch the restricted spectra in TOF/data/spectrumScaled.root
arcelli [Mon, 30 Apr 2007 10:31:49 +0000 (10:31 +0000)]
Updates to fetch the restricted spectra in TOF/data/spectrumScaled.root

16 years agolimit histo range for ToT to a sensible range
arcelli [Mon, 30 Apr 2007 10:30:06 +0000 (10:30 +0000)]
limit histo range for ToT to a sensible range

16 years agoFast simulation of pi/K -> mu X (H. Woehri, A. de Falco)
morsch [Mon, 30 Apr 2007 09:39:21 +0000 (09:39 +0000)]
Fast simulation of pi/K -> mu X (H. Woehri, A. de Falco)

16 years agoDecay mode kAllMuonic added. (Hermine Woehri)
morsch [Mon, 30 Apr 2007 09:37:39 +0000 (09:37 +0000)]
Decay mode kAllMuonic added. (Hermine Woehri)

16 years agoDecay mode kAllMuonic !
morsch [Mon, 30 Apr 2007 09:36:19 +0000 (09:36 +0000)]
Decay mode kAllMuonic !

16 years agopin noise is inrceased from 4MeV to 10 MeV which got from analysis test beam data
pavlinov [Mon, 30 Apr 2007 02:08:43 +0000 (02:08 +0000)]
pin noise is inrceased from 4MeV to 10 MeV which got from analysis test beam data

16 years agoNew return value, and some minor fixes
gustavo [Sun, 29 Apr 2007 15:06:19 +0000 (15:06 +0000)]
New return value, and some minor fixes

16 years agoUpdate RotateBack() and remove Rotate()
cblume [Sun, 29 Apr 2007 13:37:15 +0000 (13:37 +0000)]
Update RotateBack() and remove Rotate()

16 years agoBug on Dump output (Gines)
martinez [Sat, 28 Apr 2007 21:19:51 +0000 (21:19 +0000)]
Bug on Dump output (Gines)

16 years agoMoving to versions 3 of the STRUCT components (Gines)
martinez [Sat, 28 Apr 2007 21:05:44 +0000 (21:05 +0000)]
Moving to versions 3 of the STRUCT components (Gines)

16 years agoFixing bug with the new version of the absorber v3 in STRUCT (Philippe)
martinez [Sat, 28 Apr 2007 21:05:00 +0000 (21:05 +0000)]
Fixing bug with the new version of the absorber v3 in STRUCT (Philippe)

16 years agoDead channels simulation: digit energy sets to 0.
policheh [Sat, 28 Apr 2007 10:43:36 +0000 (10:43 +0000)]
Dead channels simulation: digit energy sets to 0.

16 years agoAdd method to return XY pattern array (Christian)
pcrochet [Sat, 28 Apr 2007 09:51:30 +0000 (09:51 +0000)]
Add method to return XY pattern array (Christian)

16 years agoadd GetTransformer (Christian)
pcrochet [Sat, 28 Apr 2007 09:50:10 +0000 (09:50 +0000)]
add GetTransformer (Christian)

16 years agosome code cleanup in the matching loop
arcelli [Fri, 27 Apr 2007 17:42:16 +0000 (17:42 +0000)]
some code cleanup in the matching loop

16 years agomerge DistanceToPad and IsInsideThePad methods
arcelli [Fri, 27 Apr 2007 17:41:12 +0000 (17:41 +0000)]
merge DistanceToPad and IsInsideThePad methods

16 years agoFix bug in internal cordinate representation
cblume [Fri, 27 Apr 2007 17:13:55 +0000 (17:13 +0000)]
Fix bug in internal cordinate representation

16 years agoCalibration stops if PHOS CDB objects do not exist
kharlov [Fri, 27 Apr 2007 16:55:53 +0000 (16:55 +0000)]
Calibration stops if PHOS CDB objects do not exist

16 years agoCopy constructor and assignment operator implemented correctly. To be used in HLT...
cvetan [Fri, 27 Apr 2007 16:22:26 +0000 (16:22 +0000)]
Copy constructor and assignment operator implemented correctly. To be used in HLT for making a snapshot of the raw-stream class during the ordering and processing of the TPC raw data

16 years agoAliHMPID moved from base to sim library
kir [Fri, 27 Apr 2007 15:10:15 +0000 (15:10 +0000)]
AliHMPID moved from base to sim library

16 years agoAssignment operator implemented correctly. To be used in HLT for making a snapshot...
cvetan [Fri, 27 Apr 2007 14:55:30 +0000 (14:55 +0000)]
Assignment operator implemented correctly. To be used in HLT for making a snapshot of the raw-stream class during the ordering and processing of the TPC raw data

16 years agoAdding a comment
ivana [Fri, 27 Apr 2007 14:40:05 +0000 (14:40 +0000)]
Adding a comment

16 years agoChanges to offer an example of the new simplified interface.
ivana [Fri, 27 Apr 2007 14:39:52 +0000 (14:39 +0000)]
Changes to offer an example of the new simplified interface.
The old one is still there though (as it might be needed in some cases)
(Laurent)

16 years agoAdding a simplified interface Next(buspatch,manu,channel,charge) to iterate over...
ivana [Fri, 27 Apr 2007 14:39:37 +0000 (14:39 +0000)]
Adding a simplified interface Next(buspatch,manu,channel,charge) to iterate over raw data
(Laurent)

16 years agoNow uses the simplified interface of RawStreamTracker to loop over raw data
ivana [Fri, 27 Apr 2007 14:39:18 +0000 (14:39 +0000)]
Now uses the simplified interface of RawStreamTracker to loop over raw data
(Laurent)

16 years agoChannelId() from Char to UChar
ivana [Fri, 27 Apr 2007 14:39:04 +0000 (14:39 +0000)]
ChannelId() from Char to UChar
(Laurent)

16 years agoAir with increased transport cuts close to qb28.
morsch [Fri, 27 Apr 2007 13:38:00 +0000 (13:38 +0000)]
Air with increased transport cuts close to qb28.

16 years agoIncreases transport cuts in the tunnel.
morsch [Fri, 27 Apr 2007 13:22:42 +0000 (13:22 +0000)]
Increases transport cuts in the tunnel.

16 years agoCorrection.
morsch [Fri, 27 Apr 2007 13:21:02 +0000 (13:21 +0000)]
Correction.

16 years agoIncreased transport cuts close to Cu pipe RB24 (Ernesto)
morsch [Fri, 27 Apr 2007 13:17:22 +0000 (13:17 +0000)]
Increased transport cuts close to Cu pipe RB24 (Ernesto)

16 years agoIncreased transport cuts for dipole and compensator. (Ernesto)
morsch [Fri, 27 Apr 2007 13:16:10 +0000 (13:16 +0000)]
Increased transport cuts for dipole and compensator. (Ernesto)

16 years agoIncreased transport cuts for compensator dipole.
morsch [Fri, 27 Apr 2007 13:15:25 +0000 (13:15 +0000)]
Increased transport cuts for compensator dipole.

16 years agocorrected constructor (Haavard)
marian [Fri, 27 Apr 2007 13:12:41 +0000 (13:12 +0000)]
corrected constructor (Haavard)

16 years agoUnnecessary include of TNamed removed.
markus [Fri, 27 Apr 2007 13:06:28 +0000 (13:06 +0000)]
Unnecessary include of TNamed removed.

16 years agoDefault PID updated.
markus [Fri, 27 Apr 2007 13:05:28 +0000 (13:05 +0000)]
Default PID updated.

16 years agoBug fix to avoid newly created and added headers for each event.
markus [Fri, 27 Apr 2007 13:04:18 +0000 (13:04 +0000)]
Bug fix to avoid newly created and added headers for each event.

16 years agoFixing big memory leak. The parameters should NOT be read from CDB inside the loop...
cvetan [Fri, 27 Apr 2007 12:52:36 +0000 (12:52 +0000)]
Fixing big memory leak. The parameters should NOT be read from CDB inside the loop over raw data, but rather once during the initialization (Peter+Cvetan)

16 years agoParameters not cloned anymore - responisbility of the Cache (Marian)
marian [Fri, 27 Apr 2007 12:47:49 +0000 (12:47 +0000)]
Parameters not cloned anymore  - responisbility of the Cache (Marian)

16 years agoRemove dependency on gAlice (Gustavo)
kharlov [Fri, 27 Apr 2007 12:45:43 +0000 (12:45 +0000)]
Remove dependency on gAlice (Gustavo)

16 years agomacro to check TOF raw data
arcelli [Fri, 27 Apr 2007 11:29:47 +0000 (11:29 +0000)]
macro to check TOF raw data

16 years agoworkaround for ROOT bug: in order to avoid crashes when unloading
richterm [Fri, 27 Apr 2007 11:29:26 +0000 (11:29 +0000)]
workaround for ROOT bug: in order to avoid crashes when unloading
dynamic libraries via gSystem, the libraries are not unloaded
further investigation necessary

16 years agoupdates for the new decoder
arcelli [Fri, 27 Apr 2007 11:28:13 +0000 (11:28 +0000)]
updates for the new decoder

16 years agoHLT base
richterm [Fri, 27 Apr 2007 11:25:35 +0000 (11:25 +0000)]
HLT base
- memory leaks corrected
- AliLog support moved to libAliHLTUtil in order to keep
- libHLTbase free of AliRoot dependencies
- dynamic loeding of AliLog support
- AliHLTFileWriter moved to libAliHLTUtil

16 years agoAliHLTFileWriter moved to libAliHLTUtil
richterm [Fri, 27 Apr 2007 11:24:47 +0000 (11:24 +0000)]
AliHLTFileWriter moved to libAliHLTUtil

16 years agoupdates for the new decoder
arcelli [Fri, 27 Apr 2007 11:20:39 +0000 (11:20 +0000)]
updates for the new decoder

16 years agoobject for storing TOF decoded RAW data
arcelli [Fri, 27 Apr 2007 11:09:55 +0000 (11:09 +0000)]
object for storing TOF decoded RAW data

16 years agojust set increased version in ClassDef
arcelli [Fri, 27 Apr 2007 11:07:27 +0000 (11:07 +0000)]
just set increased version in ClassDef

16 years agoTOF raw data bit fields
arcelli [Fri, 27 Apr 2007 11:04:37 +0000 (11:04 +0000)]
TOF raw data bit fields

16 years agocontainer for TOF raw data
arcelli [Fri, 27 Apr 2007 11:03:13 +0000 (11:03 +0000)]
container for TOF raw data

16 years agoTOF Raw Data decoder
arcelli [Fri, 27 Apr 2007 11:00:38 +0000 (11:00 +0000)]
TOF Raw Data decoder

16 years agoAdd fast gaussian fitting routine (Marian)
cvetan [Fri, 27 Apr 2007 10:45:39 +0000 (10:45 +0000)]
Add fast gaussian fitting routine (Marian)

16 years agoANALYSIS lib is added
kir [Fri, 27 Apr 2007 10:43:00 +0000 (10:43 +0000)]
ANALYSIS lib is added

16 years agoLess include files...
dibari [Fri, 27 Apr 2007 10:07:54 +0000 (10:07 +0000)]
Less include files...

16 years agoDIPO added
morsch [Fri, 27 Apr 2007 09:50:23 +0000 (09:50 +0000)]
DIPO added

16 years agoresolve a rounding problem
schutz [Fri, 27 Apr 2007 09:29:32 +0000 (09:29 +0000)]
resolve a rounding problem

16 years agoMakeTree follows naming convention (Marian)
marian [Fri, 27 Apr 2007 08:54:36 +0000 (08:54 +0000)]
MakeTree follows naming convention (Marian)

16 years agoOverlaps corrected.
morsch [Fri, 27 Apr 2007 08:45:11 +0000 (08:45 +0000)]
Overlaps corrected.

16 years agoAdd getters (Marian)
marian [Fri, 27 Apr 2007 08:30:29 +0000 (08:30 +0000)]
Add getters (Marian)

16 years agoIgnoring *.rootmap
hristov [Fri, 27 Apr 2007 08:14:39 +0000 (08:14 +0000)]
Ignoring *.rootmap

16 years agoadded const in Trigger(fileName)
schutz [Fri, 27 Apr 2007 07:55:22 +0000 (07:55 +0000)]
added const in Trigger(fileName)

16 years agoRemove event number reading due to interface changes
akisiel [Fri, 27 Apr 2007 07:28:34 +0000 (07:28 +0000)]
Remove event number reading due to interface changes

16 years agoMake revisions needed for compilation from the main AliRoot tree
akisiel [Fri, 27 Apr 2007 07:25:59 +0000 (07:25 +0000)]
Make revisions needed for compilation from the main AliRoot tree

16 years agoCreate two femto libraries - libPWG2femtoscopy and libPWG2femtoscopyUser
akisiel [Fri, 27 Apr 2007 07:22:24 +0000 (07:22 +0000)]
Create two femto libraries - libPWG2femtoscopy and libPWG2femtoscopyUser

16 years agoSplit femto code into two libraries
akisiel [Fri, 27 Apr 2007 07:21:25 +0000 (07:21 +0000)]
Split femto code into two libraries

16 years agoGetFileSources returns empty list in case of no files, but successful query
jgrosseo [Fri, 27 Apr 2007 07:06:48 +0000 (07:06 +0000)]
GetFileSources returns empty list in case of no files, but successful query
No mails sent in testmode

16 years agoCoding conventions
dibari [Thu, 26 Apr 2007 17:28:58 +0000 (17:28 +0000)]
Coding conventions