]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
14 years agoviolations were fixed
alla [Sun, 14 Mar 2010 11:36:06 +0000 (11:36 +0000)]
violations were fixed

14 years agoM AliTPCDistortionFun.C - Make more fun(ction)
marian [Sun, 14 Mar 2010 11:29:16 +0000 (11:29 +0000)]
M      AliTPCDistortionFun.C - Make more fun(ction)
                             - Some default pictures defined
M      AliTPCDistortions.cxx - Bug fix in constructor - Default parameters

14 years agoImplemented possibility to add global objects (like general parameters or cuts) in...
agheata [Sun, 14 Mar 2010 11:12:17 +0000 (11:12 +0000)]
Implemented possibility to add global objects (like general parameters or cuts) in the output file(s) of an analysis task. The objects do not need to be mergeable and have to be created in methods running on the local client (ctor, LocalInit()). Typical usage:

header: if needed in UserExec, make sure the cuts/param object is a STREAMABLE data member so it can end up on workers, in case you need to use it for UserExec selections (i.e. no //! comment)
        if the object is not used in the analysis add a //! comment for its data member
steering macro: pC = mgr->CreateContainer(name, TList::Class(), AliAnalysisDataContainer::kParamContainer, FILENAME)
                mgr->ConnectOutput(myTask, n, pC);
NOTE: may be anything else, not only a TList; FILENAME may match the file for other output containers.

MyTask::MyTask(const char *name) : AliAnalysisTaskSE(name)
{
   DefineOutput(1, TList::Class);  // normal output slots
   ...
   DefineOutput(n, TList::Class);  // will contain cuts or local params
}

MyTask::LocalInit()
{
   // Create cuts/param objects and publish to slot
   fCuts = new TList();
   myCutsObj = new ...
   // Configure myCutsObj
   ...
   // Add to list
   fCuts->Add(myCutsObj);
   // Do the same for other param/cuts
   ...
   // Post Data (!!!)
   PostData(n, myCuts);
}

MyTask::UserCreateOutputObjects()
{
// DO NOT CREATE CUTS/PARAM OBJECTS HERE
}

MyTask::UserExec()
{
// DO NOT POST DATA FOR CUTS OBJECT SLOTS
// You MAY use fCuts object if this is streamable
}

MyTask::Terminate()
{
   // Get objects from output slots post-process them
   ...
   // Update or add objects to fCuts if needed
   fCuts->Add(some_other_object);
}

END:
This param/cuts object will end-up in the file:folder you requested when defining the container. Voila...

14 years agoFilling in ESD SM geomatry matrix: path of matrix existance was checked but the...
gconesab [Sun, 14 Mar 2010 11:10:15 +0000 (11:10 +0000)]
Filling in  ESD SM geomatry matrix: path of matrix existance was checked but the matrix was not recovered, just the default, now fixed. Change hardcoded number of SuperModules by the actual number set in the geometry.

14 years agoNew analysis profiling implementation. Triggering collection of system info works...
agheata [Sun, 14 Mar 2010 09:43:01 +0000 (09:43 +0000)]
New analysis profiling implementation. Triggering collection of system info works only in "local" modeis done as usual via:
   mgr->SetNSysInfo(nevents); // Dump info in sysinfo.txt each nevents
A final displayed canvas contains: alocated VM[kB] per event for each top task (plot includes all subtasks), alocated VM for all tasks in CreateOutputObjects, alocated VM for all tasks in Terminate, VM profile for full analysis.

The memory profile is stored in a tree in a file sysinfo.root. One can investigate his task via:
   mgr->ProfileTask(const char *taskname); or:
   mgr->ProfileTask(Int_t itask)
where: taskname is the task name and itask is the task index in the list of top level tasks.
This will produce a canvas with memory alocation in CreateOutputObjects(), Exec() and Terminate() methods + CPU time spent per event

14 years agostyle violation fixes: added comments
dsilverm [Sat, 13 Mar 2010 20:50:35 +0000 (20:50 +0000)]
style violation fixes: added comments

14 years agoFix coding rule violations
cblume [Sat, 13 Mar 2010 16:43:47 +0000 (16:43 +0000)]
Fix coding rule violations

14 years agoDistortion macros - very preliminary version
marian [Sat, 13 Mar 2010 11:18:35 +0000 (11:18 +0000)]
Distortion macros - very preliminary version
Once fully debugged - will be moved to the compiled part of the code
(Magnus, Jim)

14 years ago Simple compiled macro for declaration of static distortion function
marian [Sat, 13 Mar 2010 11:09:32 +0000 (11:09 +0000)]
  Simple compiled macro for declaration of static distortion function
  on top of the AliTPCDistortion class.
  Why:
  1. Use static function in the fitting procedure
  2. Usage in TFormual, TF1, Tf2 ... for visualization.
  3. Usage in  tree->Draw() for visualization
  4. Simple visualization of fit residuals in multidemension - using tree Draw functionality

14 years agocoding violations
slindal [Sat, 13 Mar 2010 08:48:59 +0000 (08:48 +0000)]
coding violations

14 years agocoding violations
slindal [Sat, 13 Mar 2010 08:36:42 +0000 (08:36 +0000)]
coding violations

14 years agoFixes to obey coding conventions
masera [Fri, 12 Mar 2010 21:15:47 +0000 (21:15 +0000)]
Fixes to obey coding conventions

14 years ago- Reading of packed TRAP config from raw data for full half-chamber
cblume [Fri, 12 Mar 2010 20:29:33 +0000 (20:29 +0000)]
- Reading of packed TRAP config from raw data for full half-chamber
- Storage of DMEM content in separate blocks according to
  different granularities, incl. PID LUT (Uwe)

14 years agoImprovements (Jens Wiechula); AliDielectronCFdraw still produces a warning.
andronic [Fri, 12 Mar 2010 18:39:09 +0000 (18:39 +0000)]
Improvements (Jens Wiechula); AliDielectronCFdraw still produces a warning.

14 years agoMajor changes in AliPhysicsSelection (Michele)
jgrosseo [Fri, 12 Mar 2010 17:55:13 +0000 (17:55 +0000)]
Major changes in AliPhysicsSelection (Michele)
-- Default trigger is now MB1
-- You can calculate the background in your sample by providing a special function in your task,
see docu of AliPhysicsSelection

14 years agoAdd online raw reader by Jochen as default version
cblume [Fri, 12 Mar 2010 16:58:26 +0000 (16:58 +0000)]
Add online raw reader by Jochen as default version

14 years agoRemoving obsolete file
hristov [Fri, 12 Mar 2010 16:41:21 +0000 (16:41 +0000)]
Removing obsolete file

14 years agoITS services on side A (M. Sitta)
masera [Fri, 12 Mar 2010 16:20:43 +0000 (16:20 +0000)]
ITS services on side A (M. Sitta)

14 years agoBugs squashed.
policheh [Fri, 12 Mar 2010 15:38:14 +0000 (15:38 +0000)]
Bugs squashed.

14 years agoI implemented the possibility
morsch [Fri, 12 Mar 2010 15:07:03 +0000 (15:07 +0000)]
I implemented the possibility
- to reject all tracks that have shared TPC clusters:
� void SetAcceptSharedTPCClusters(Bool_t b=kTRUE){fCutAcceptSharedTPCClusters=b;}

Marta Verweij <marta.verweij@cern.ch>

14 years agoUpdate for AliAODHeader. (R. Arnaldi)
morsch [Fri, 12 Mar 2010 14:54:03 +0000 (14:54 +0000)]
Update for AliAODHeader. (R. Arnaldi)

14 years agoUpdates for dimuons (R. Arnaldi)
morsch [Fri, 12 Mar 2010 14:51:33 +0000 (14:51 +0000)]
Updates for dimuons (R. Arnaldi)

14 years agoSome fixes for memory leaks
kleinb [Fri, 12 Mar 2010 13:35:57 +0000 (13:35 +0000)]
Some fixes for memory leaks

14 years agoMoving AliTRDCalPID to libTRDbase.pkg since it is used by AliTRDcalibDB (loadlibs.C)
hristov [Fri, 12 Mar 2010 12:31:58 +0000 (12:31 +0000)]
Moving AliTRDCalPID to libTRDbase.pkg since it is used by AliTRDcalibDB (loadlibs.C)

14 years agocorrecting the RecoParam once more. It turned out that it is not possible to use...
richterm [Fri, 12 Mar 2010 11:53:57 +0000 (11:53 +0000)]
correcting the RecoParam once more. It turned out that it is not possible to use one default AliDetectorRecoParam object for all event species. Using
now a TObjArray with 4 entries of specie 3(!), 4, 8, 16 like all the other detectors. However it is not clear why it is 3 and not 2.

14 years agoClass for Omega Dalitz Decays (R. Averbeck, AM)
morsch [Fri, 12 Mar 2010 11:38:21 +0000 (11:38 +0000)]
Class for Omega Dalitz Decays (R. Averbeck, AM)

14 years agoSet output slot 0 of task
esicking [Fri, 12 Mar 2010 10:54:51 +0000 (10:54 +0000)]
Set output slot 0 of task

14 years agoprimary track and eta cuts for TRD influence on pt resolution @ vertex
abercuci [Fri, 12 Mar 2010 10:46:45 +0000 (10:46 +0000)]
primary track and eta cuts for TRD influence on pt resolution @ vertex

14 years agoRemoving obsolete calls
hristov [Fri, 12 Mar 2010 10:46:13 +0000 (10:46 +0000)]
Removing obsolete calls

14 years agoDetector Algorithm for pedestal runs.
policheh [Fri, 12 Mar 2010 10:30:59 +0000 (10:30 +0000)]
Detector Algorithm for pedestal runs.

14 years agoNew version.
agheata [Fri, 12 Mar 2010 10:28:03 +0000 (10:28 +0000)]
New version.

14 years agoPlot rather virtual memory usage per process than total memory.
agheata [Fri, 12 Mar 2010 10:27:32 +0000 (10:27 +0000)]
Plot rather virtual memory usage per process than total memory.

14 years agoFix usage of fFillAODRun flag
agheata [Fri, 12 Mar 2010 10:25:20 +0000 (10:25 +0000)]
Fix usage of fFillAODRun flag

14 years agoFix for report #63691: Update the PHOS section in Config.C for MC production
hristov [Fri, 12 Mar 2010 10:24:26 +0000 (10:24 +0000)]
Fix for report #63691: Update the PHOS section in Config.C for MC production

14 years agoM makeCalibTree.sh - use standard halloWorld.sh script
marian [Fri, 12 Mar 2010 10:19:57 +0000 (10:19 +0000)]
M      makeCalibTree.sh    - use standard halloWorld.sh script
M      guiTime             - use standard startGUItime.sh

14 years agoFix for report #63895: Request new reconstruction step (the track length must be...
hristov [Fri, 12 Mar 2010 08:41:44 +0000 (08:41 +0000)]
Fix for report #63895: Request new reconstruction step (the track length must be calculated between two points in the _same_ local coordinate system)

14 years agoforgotten commit
marian [Fri, 12 Mar 2010 08:27:19 +0000 (08:27 +0000)]
forgotten commit

14 years agofixed rule violations
slindal [Fri, 12 Mar 2010 06:06:12 +0000 (06:06 +0000)]
fixed rule violations

14 years agofix warnings
jthaeder [Thu, 11 Mar 2010 23:18:16 +0000 (23:18 +0000)]
fix warnings

14 years agoadded missing QA object (dummy) in QAref/Global/QA/Calib
schutz [Thu, 11 Mar 2010 21:00:54 +0000 (21:00 +0000)]
added missing QA object (dummy) in QAref/Global/QA/Calib

14 years agoadded missing QA object (dummy) in QAref/T0/QA/Calib
schutz [Thu, 11 Mar 2010 20:55:37 +0000 (20:55 +0000)]
added missing QA object (dummy) in QAref/T0/QA/Calib

14 years agoadded missing QA object (dummy) in QAref/HMPID/QA/Calib
schutz [Thu, 11 Mar 2010 20:49:12 +0000 (20:49 +0000)]
added missing QA object (dummy) in QAref/HMPID/QA/Calib

14 years agoadded missing QA object (dummy) in QAref/PMD/QA/Calib
schutz [Thu, 11 Mar 2010 20:48:34 +0000 (20:48 +0000)]
added missing QA object (dummy) in QAref/PMD/QA/Calib

14 years agoadded missing QA object (dummy) in QAref/PHOS/QA/Calib
schutz [Thu, 11 Mar 2010 20:34:55 +0000 (20:34 +0000)]
added missing QA object (dummy) in QAref/PHOS/QA/Calib

14 years agoadd new class to hold info on bins used in fitting + standardize result return codes...
dsilverm [Thu, 11 Mar 2010 19:27:18 +0000 (19:27 +0000)]
add new class to hold info on bins used in fitting + standardize result return codes + allow for free tau fit for kLMS + keep samples at threshold also, to help low amplitude peak estimates

14 years agouncomment the analysis setting lines comitted by mistake previously
gconesab [Thu, 11 Mar 2010 18:02:35 +0000 (18:02 +0000)]
uncomment the analysis setting lines comitted by mistake previously

14 years ago#
marian [Thu, 11 Mar 2010 18:01:06 +0000 (18:01 +0000)]
#
# Sequence of steps to test Pass0 and PassX reconstruction/calibration which run on GRID
# by default
#
# Semi automatic test performed on the batch farm
# Important features:
# 1. Parsing of the log files
# 2. Parsing stack traces

# author:  marian.ivanov@cern.ch

14 years agocorrect conversion of run type from esd into eventspecie
schutz [Thu, 11 Mar 2010 17:48:32 +0000 (17:48 +0000)]
correct conversion of run type from esd into eventspecie

14 years agofind in the alien catalog runs now over every year
schutz [Thu, 11 Mar 2010 17:47:22 +0000 (17:47 +0000)]
find in the alien catalog runs now over every year

14 years agofind in the alien catalog runs now over every year
schutz [Thu, 11 Mar 2010 17:46:10 +0000 (17:46 +0000)]
find in the alien catalog runs now over every year

14 years agofix coding violations
snelling [Thu, 11 Mar 2010 17:39:46 +0000 (17:39 +0000)]
fix coding violations

14 years agoadd support for remote files, the macro connects to the Grid if a Grid file is specif...
richterm [Thu, 11 Mar 2010 17:22:24 +0000 (17:22 +0000)]
add support for remote files, the macro connects to the Grid if a Grid file is specified as input

14 years agoremoving the specific storage for the HLT/Calib/RecoParam as the new entry is now...
richterm [Thu, 11 Mar 2010 17:02:06 +0000 (17:02 +0000)]
removing the specific storage for the HLT/Calib/RecoParam as the new entry is now uploaded to the Grid

14 years agoAdd DAQ DA for half chmaber status (Julian)
cblume [Thu, 11 Mar 2010 16:45:40 +0000 (16:45 +0000)]
Add DAQ DA for half chmaber status (Julian)

14 years agoMetadata record is updated.
kharlov [Thu, 11 Mar 2010 16:33:20 +0000 (16:33 +0000)]
Metadata record is updated.

14 years agoFixing warnings (Xiaoming)
martinez [Thu, 11 Mar 2010 16:22:14 +0000 (16:22 +0000)]
Fixing warnings (Xiaoming)

14 years agoUpdates due to PHOS survey measurements in August 2009.
kharlov [Thu, 11 Mar 2010 16:20:33 +0000 (16:20 +0000)]
Updates due to PHOS survey measurements in August 2009.

14 years agoSet max field default value to 15 kG to be above compensator dipole values
shahoian [Thu, 11 Mar 2010 16:07:25 +0000 (16:07 +0000)]
Set max field default value to 15 kG to be above compensator dipole values

14 years agoextra methods to generate flow for odd harmonics
snelling [Thu, 11 Mar 2010 15:41:49 +0000 (15:41 +0000)]
extra methods to generate flow for odd harmonics

14 years agoScripts for the TPC OCDB scanning moved to the scrpts/OCDBscan subdirectory
marian [Thu, 11 Mar 2010 15:33:48 +0000 (15:33 +0000)]
Scripts for the TPC OCDB scanning moved to the scrpts/OCDBscan subdirectory
(Marian Ivanov)

14 years agoUpdating DCS DPs.
zampolli [Thu, 11 Mar 2010 15:33:46 +0000 (15:33 +0000)]
Updating DCS DPs.

14 years agoMoving the OCDBscan scripts to the subdirectory
marian [Thu, 11 Mar 2010 15:30:04 +0000 (15:30 +0000)]
Moving the OCDBscan scripts to the subdirectory
Alien implementation not yet done.
For the moment local and batch farm implementation.

(Marian Ivanov)

14 years agoFixing based on suggestions
pchrist [Thu, 11 Mar 2010 15:28:42 +0000 (15:28 +0000)]
Fixing based on suggestions

14 years ago- HLT reco param loaded from local $ALICE_ROOT/OCDB
richterm [Thu, 11 Mar 2010 15:07:51 +0000 (15:07 +0000)]
- HLT reco param loaded from local $ALICE_ROOT/OCDB
- added new parameter 'modules' to specify the modules to run the reconstruction for
- updated documentation and added help printout

14 years agobugfix: correcting the event specie of the default HLT RecoParam entry
richterm [Thu, 11 Mar 2010 15:05:04 +0000 (15:05 +0000)]
bugfix: correcting the event specie of the default HLT RecoParam entry
it was 'default' and causes the QA histograms not to be saved. Object
now valid for all event species.

14 years agoAdding a placeholder class for the backward-forward correlation analysis of the FMD
hdalsgaa [Thu, 11 Mar 2010 15:04:30 +0000 (15:04 +0000)]
Adding a placeholder class for the backward-forward correlation analysis of the FMD

14 years agoUpdating TOF responsibles.
zampolli [Thu, 11 Mar 2010 14:30:39 +0000 (14:30 +0000)]
Updating TOF responsibles.

14 years agoCorrect memory leaks.
gconesab [Thu, 11 Mar 2010 14:20:41 +0000 (14:20 +0000)]
Correct memory leaks.
Correct wagon.

14 years agoAdding HPTDC parameters that are to be used in MC (hits->digits). The preprocessor...
cvetan [Thu, 11 Mar 2010 14:11:28 +0000 (14:11 +0000)]
Adding HPTDC parameters that are to be used in MC (hits->digits). The preprocessor code is also updated correspondingly.

14 years agoFix for root file geom (I.Hrivnacova)
fca [Thu, 11 Mar 2010 12:57:29 +0000 (12:57 +0000)]
Fix for root file geom (I.Hrivnacova)

14 years ago- added warning for track id mismatch
kkanaki [Thu, 11 Mar 2010 12:11:36 +0000 (12:11 +0000)]
- added warning for track id mismatch

14 years ago- fixed compilation warning
kkanaki [Thu, 11 Mar 2010 12:05:26 +0000 (12:05 +0000)]
- fixed compilation warning

14 years agoFixed handling for events without jets
jthaeder [Thu, 11 Mar 2010 11:54:15 +0000 (11:54 +0000)]
Fixed handling for events without jets

14 years agoBug fixed (Roberta)
martinez [Thu, 11 Mar 2010 11:22:55 +0000 (11:22 +0000)]
Bug fixed (Roberta)

14 years agoProcedures for half chamber status (Julian)
cblume [Thu, 11 Mar 2010 11:01:51 +0000 (11:01 +0000)]
Procedures for half chamber status (Julian)

14 years agoAdd in the UserCreateOutputObjects a set owner and post data for the output container...
gconesab [Thu, 11 Mar 2010 10:36:48 +0000 (10:36 +0000)]
Add in the UserCreateOutputObjects a set owner and post data for the output container list

14 years agoDon't fit High Voltage values (use last recorded point from source map)
haavard [Thu, 11 Mar 2010 08:35:08 +0000 (08:35 +0000)]
Don't fit High Voltage values (use last recorded point from source map)

14 years agoPdgCode() ported to the interface
morsch [Thu, 11 Mar 2010 08:32:30 +0000 (08:32 +0000)]
PdgCode() ported to the interface

14 years agoFixed bugs that made histograms being drawn on top of each other
slindal [Thu, 11 Mar 2010 07:35:35 +0000 (07:35 +0000)]
Fixed bugs that made histograms being drawn on top of each other

14 years agofix compilation problem in GSI train
abercuci [Thu, 11 Mar 2010 07:07:18 +0000 (07:07 +0000)]
fix compilation problem in GSI train

14 years agoUpdate of the Xiaoming code for pp900 first muon analysis. Fixing wanirngs and violti...
martinez [Wed, 10 Mar 2010 20:44:35 +0000 (20:44 +0000)]
Update of the Xiaoming code for pp900 first muon analysis. Fixing wanirngs and violtions (Xiaoming)

14 years agoKeep e+e- from pair production of primary gammas.
morsch [Wed, 10 Mar 2010 20:19:16 +0000 (20:19 +0000)]
Keep e+e- from pair production of primary gammas.

14 years agoFixing bug in printed debug message.
aszostak [Wed, 10 Mar 2010 20:10:22 +0000 (20:10 +0000)]
Fixing bug in printed debug message.

14 years agoAdding HLT/libAliHLTEve.pkg
hristov [Wed, 10 Mar 2010 20:03:59 +0000 (20:03 +0000)]
Adding HLT/libAliHLTEve.pkg

14 years agomethod extracting the event specie from the ESD
schutz [Wed, 10 Mar 2010 19:47:49 +0000 (19:47 +0000)]
method extracting the event specie from the ESD

14 years agomacro and script to run QA on recpoints outside of reconstruction
schutz [Wed, 10 Mar 2010 19:47:10 +0000 (19:47 +0000)]
macro and script to run QA on recpoints outside of reconstruction

14 years agoPossibility to reconstruct a primary vertex using ITS-standalone tracks only (A....
belikov [Wed, 10 Mar 2010 17:32:05 +0000 (17:32 +0000)]
Possibility to reconstruct a primary vertex using ITS-standalone tracks only (A. Dainese)

14 years agoIn vmctest/ppbench:
ivana [Wed, 10 Mar 2010 16:40:15 +0000 (16:40 +0000)]
In vmctest/ppbench:
Updated commonConfig.C macro for modifications in STEER (moving
SetGeometryFile() from AliRun in AliSimulation)

14 years agoIn vmctest/gun:
ivana [Wed, 10 Mar 2010 16:37:38 +0000 (16:37 +0000)]
In vmctest/gun:
Renaming runsim.sh in runtest.sh

14 years agoIn vmctest/gun:
ivana [Wed, 10 Mar 2010 16:35:15 +0000 (16:35 +0000)]
In vmctest/gun:
- Updated commonConfig.C macro for modifications in STEER (moving
  SetGeometryFile() from AliRun in AliSimulation);
- Fixes in runsim.sh - activated test for G3, uncommented line for
  running reconstruction

14 years ago-Created new libarey AliHLTEve with processor classes for the HLT online display
slindal [Wed, 10 Mar 2010 16:00:15 +0000 (16:00 +0000)]
-Created new libarey AliHLTEve with processor classes for the HLT online display
-Created new binarey alihlteve for the hlt display

14 years ago- Changes in the calibration framework to write the filtered friends in a
zampolli [Wed, 10 Mar 2010 15:41:52 +0000 (15:41 +0000)]
- Changes in the calibration framework to write the filtered friends in a
separate tree.
- Change of the name of the friends tree (esdTree --> esdFriendTree).
- Warning suppressed.

14 years agoTechnical fix for report #63995: Missing array bounds check in AliRecoParam::GetDetRe...
hristov [Wed, 10 Mar 2010 15:32:56 +0000 (15:32 +0000)]
Technical fix for report #63995: Missing array bounds check in AliRecoParam::GetDetRecoParam

14 years agoM AliTPCcalibDButil.cxx - Protection agains missing Offset calibration...
marian [Wed, 10 Mar 2010 15:30:49 +0000 (15:30 +0000)]
M      AliTPCcalibDButil.cxx       - Protection agains missing Offset calibration - One year history

14 years agoM AliTPCcalibDB.cxx - Missing CTP changed to AliError
marian [Wed, 10 Mar 2010 15:29:37 +0000 (15:29 +0000)]
M      AliTPCcalibDB.cxx           - Missing CTP changed to AliError
M      AliTPCcalibDButil.cxx       - Protection agains missing Offset calibration - One year history
M      AliTPCTransform.cxx         - Check availability of CTP calibration

Marian

14 years agoAdding OCDB entry for time slewing + a macro to create it.
cvetan [Wed, 10 Mar 2010 14:58:40 +0000 (14:58 +0000)]
Adding OCDB entry for time slewing + a macro to create it.

14 years agoRapidity mode for the absorption corrections
pchrist [Wed, 10 Mar 2010 14:55:53 +0000 (14:55 +0000)]
Rapidity mode for the absorption corrections

14 years agoFix for bug #63909 Request to change data/galice.cuts for FMD - again
hristov [Wed, 10 Mar 2010 14:49:59 +0000 (14:49 +0000)]
Fix for bug #63909 Request to change data/galice.cuts for FMD - again

14 years agoUnload the VZERO digits per event
gconesab [Wed, 10 Mar 2010 14:40:29 +0000 (14:40 +0000)]
Unload the VZERO digits per event

14 years agoskip asking for default pedestal and signal object
dsilverm [Wed, 10 Mar 2010 13:59:29 +0000 (13:59 +0000)]
skip asking for default pedestal and signal object