]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
14 years agomoving dndpt classes to base library (Jacek)
jgrosseo [Thu, 19 Nov 2009 09:12:42 +0000 (09:12 +0000)]
moving dndpt classes to base library (Jacek)

14 years agoAdded AliAnalysisManager::SetExternalLoop() to trigger analysis execution via an...
agheata [Thu, 19 Nov 2009 09:03:50 +0000 (09:03 +0000)]
Added AliAnalysisManager::SetExternalLoop() to trigger analysis execution via an external loop. Works only if the input tree in StartAnalysis is NULL.
The way to use this is:
   ...
   //No input handler - the input container has to be defined and have the object type
   AliAnalysisDataContainer *cinput =
   mgr->CreateContainer("cinput_myTask", AliESDEvent::Class(), AliAnalysisManager::kInputContainer);
   ...
   mgr->SetExternalLoop();
   mgr->StartAnalysis("local");
   // ... you get a printout informing that you control the event loop
   // Loop over input events
   ...
   while (inputEvent) {
      cinput->SetData(inputEvent);
      mgr->ExecAnalysis();
   }
   mgr->Terminate()

14 years agoConfig file for high mult (off 3 and 4 prong) - temporary solution
dainese [Thu, 19 Nov 2009 05:51:16 +0000 (05:51 +0000)]
Config file for high mult (off 3 and 4 prong) - temporary solution

14 years agoextending trigger agent and it's HLTOUT handler
richterm [Thu, 19 Nov 2009 00:49:23 +0000 (00:49 +0000)]
extending trigger agent and it's HLTOUT handler
- handle forwarded input trigger decisions of the global decision
- implement support for the data types kAliHLTDataTypeTriggerDecision and
  kAliHLTDataTypeGlobalTrigger

14 years agoimplementing the short info option which includes a TNames array instead of input...
richterm [Thu, 19 Nov 2009 00:12:08 +0000 (00:12 +0000)]
implementing the short info option which includes a TNames array instead of input objects and trigger decisions
adding the option -include-input=both to include both the objects and short info
bugfix in the parsing of the -include-input option

There is currently a problem in the streaming of the arrays of the GlobalTriggerDecision which causes the
short info not to show up in the extracted object when there are no trigger decisions. Furthermore only the
the fisrt object of the input object array is there after extracting (in mode 'both'). The second one which
is the CTPData object is missing. Under investigation.

14 years agoadding some additional protection in the Print() function
richterm [Thu, 19 Nov 2009 00:04:33 +0000 (00:04 +0000)]
adding some additional protection in the Print() function
input objects might not be known, especially when they are defined in component
libraries not necessarily loaded

14 years agoAvoid jumping of entries in data-selector window -- restore scrollbar position after...
mtadel [Wed, 18 Nov 2009 21:39:51 +0000 (21:39 +0000)]
Avoid jumping of entries in data-selector window -- restore scrollbar position after update.

14 years agoChange color of 'bad tracklets'.
mtadel [Wed, 18 Nov 2009 21:38:56 +0000 (21:38 +0000)]
Change color of 'bad tracklets'.

14 years agonew method where detectors can reset their local parameters
schutz [Wed, 18 Nov 2009 21:26:08 +0000 (21:26 +0000)]
new method where detectors can reset their local parameters

14 years agoFrom Pawel Debski: further changes for VizDB.
mtadel [Wed, 18 Nov 2009 20:49:41 +0000 (20:49 +0000)]
From Pawel Debski: further changes for VizDB.

14 years agoDouble delete problem in OCDB
marian [Wed, 18 Nov 2009 20:39:14 +0000 (20:39 +0000)]
Double delete problem in OCDB
(Marian)

14 years agoBug fixed
coppedis [Wed, 18 Nov 2009 20:23:54 +0000 (20:23 +0000)]
Bug fixed

14 years agoType mismatches fixed - between DCS and Preprocessor - between Digit and TriggerSimulator
cheynis [Wed, 18 Nov 2009 18:13:38 +0000 (18:13 +0000)]
Type mismatches fixed - between DCS and Preprocessor - between Digit and TriggerSimulator

14 years agoDo not use TMath::AreEqual which does not exist yet in Root 5.24
laphecet [Wed, 18 Nov 2009 16:51:15 +0000 (16:51 +0000)]
Do not use TMath::AreEqual which does not exist yet in Root 5.24

14 years agoremove debug stream from official train
abercuci [Wed, 18 Nov 2009 16:42:56 +0000 (16:42 +0000)]
remove debug stream from official train

14 years agoAdded possibility to stream selected AOD events to a different AOD file. To do this...
agheata [Wed, 18 Nov 2009 16:25:48 +0000 (16:25 +0000)]
Added possibility to stream selected AOD events to a different AOD file. To do this inside a task:
1. Make sure an AOD handler is connected to the current analysis manager before creating the task.

2. Add in the task constructor or in LocalInit():

  AliAODHandler *aodH = (AliAODHandler*)((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
  if (!aodH) Fatal("UserCreateOutputObjects", "No AOD handler. Aborting.");
  aodH->AddFilteredAOD("AliAOD.Muons.root", "MuonEvents"); // for example

The pointer to the extension should not be backed-up upon adding the AOD extension, but this can be done in CreateOutputObjects()

3. Check the selection criteria in UserExec(). If fulfilled, select the event:
    AliAODExtension *extMuons = aodH->GetFilteredAOD("AliAOD.Muons.root");
    extMuons->SelectEvent();

That is all.

14 years agonew Trending variables in the detector checker task:
abercuci [Wed, 18 Nov 2009 16:16:51 +0000 (16:16 +0000)]
new Trending variables in the detector checker task:

Plateau value of the Pulse height spectrum
Slope of the plateau (both derived from a linear fit)
Time bin of the amplification peak

14 years agoCorrection in initialisation.
morsch [Wed, 18 Nov 2009 15:58:10 +0000 (15:58 +0000)]
Correction in initialisation.

14 years agomod to go to one output file
snelling [Wed, 18 Nov 2009 15:48:03 +0000 (15:48 +0000)]
mod to go to one output file

14 years agosignal/LED events will be looked at for standalone runs (LED events not present in...
dsilverm [Wed, 18 Nov 2009 15:43:16 +0000 (15:43 +0000)]
signal/LED events will be looked at for standalone runs (LED events not present in PHYSICS runs)

14 years agoLoad 1st event in Notify()
morsch [Wed, 18 Nov 2009 15:35:04 +0000 (15:35 +0000)]
Load 1st event in Notify()

14 years agoTechnical fix for bug #59067: TUHKMgen bug during simulation
hristov [Wed, 18 Nov 2009 15:28:58 +0000 (15:28 +0000)]
Technical fix for bug #59067: TUHKMgen bug during simulation

14 years agoCsI QE maps file in OCDB
gvolpe [Wed, 18 Nov 2009 15:17:35 +0000 (15:17 +0000)]
CsI QE maps file in OCDB

14 years agoReconstruction parameters file in OCDB
gvolpe [Wed, 18 Nov 2009 15:16:29 +0000 (15:16 +0000)]
Reconstruction parameters file in OCDB

14 years agoPHOSBCMda.cxx (Dead Channel Finder) update:
policheh [Wed, 18 Nov 2009 14:55:59 +0000 (14:55 +0000)]
PHOSBCMda.cxx (Dead Channel Finder) update:
- working for all 3 PHOS modules;
- histograms for all modules stored into the single root file;
- use Fitterv3 to estimate the quality of the samples.

14 years agoMoving the trigger ocdb entry from ITS to TRIGGER folder. In sync with the new TRIGGE...
cvetan [Wed, 18 Nov 2009 14:50:38 +0000 (14:50 +0000)]
Moving the trigger ocdb entry from ITS to TRIGGER folder. In sync with the new TRIGGER pp running within Shuttle (Annalisa). Small fix in the reconstruction in order to fetch the trigger entries from the new location. Should be revised by loading only entries that are needed.

14 years agoParameters for analytical dEdx correction (Marian)
marian [Wed, 18 Nov 2009 14:19:24 +0000 (14:19 +0000)]
Parameters for analytical dEdx correction (Marian)

14 years agoFixing problems with AliHLTGlobalTriggerComponent and failing test: testGlobalTrigger...
aszostak [Wed, 18 Nov 2009 14:17:44 +0000 (14:17 +0000)]
Fixing problems with AliHLTGlobalTriggerComponent and failing test: testGlobalTriggerComponent.C

14 years agocorrect index (Theodor)
abercuci [Wed, 18 Nov 2009 14:12:40 +0000 (14:12 +0000)]
correct index (Theodor)

14 years agoDon't request reference data during reconstruction
marian [Wed, 18 Nov 2009 14:07:41 +0000 (14:07 +0000)]
Don't request reference data during reconstruction
(Jens)

14 years agoSDD ladders survey added to AliITSSurveyToAlign class (M. Poghosyan)
masera [Wed, 18 Nov 2009 14:00:52 +0000 (14:00 +0000)]
SDD ladders survey added to AliITSSurveyToAlign class (M. Poghosyan)

14 years agofix wrong Bz usage
abercuci [Wed, 18 Nov 2009 13:40:29 +0000 (13:40 +0000)]
fix wrong Bz usage

14 years agoFix for report #58884: TRD sector 10 missing in the geometry in the OCDB on alien.
hristov [Wed, 18 Nov 2009 13:36:32 +0000 (13:36 +0000)]
Fix for report #58884: TRD sector 10 missing in the geometry in the OCDB on alien.

14 years agoNew version with extra task from KINK.
agheata [Wed, 18 Nov 2009 13:27:35 +0000 (13:27 +0000)]
New version with extra task from KINK.

14 years agoBug fixes
cblume [Wed, 18 Nov 2009 12:41:37 +0000 (12:41 +0000)]
Bug fixes

14 years agoCorrect version of OCDB file
cblume [Wed, 18 Nov 2009 12:40:27 +0000 (12:40 +0000)]
Correct version of OCDB file

14 years agoReducing verbosity
masera [Wed, 18 Nov 2009 12:02:32 +0000 (12:02 +0000)]
Reducing verbosity

14 years agoLess verbose output
akisiel [Wed, 18 Nov 2009 11:54:40 +0000 (11:54 +0000)]
Less verbose output

14 years agoFixing warnings
aszostak [Wed, 18 Nov 2009 11:44:34 +0000 (11:44 +0000)]
Fixing warnings

14 years agoUpdate of the ACORDE's Geometry (Mario)
mrodrigu [Wed, 18 Nov 2009 11:29:17 +0000 (11:29 +0000)]
Update of the ACORDE's Geometry (Mario)

14 years agoFixing the vector-based output (pdf,ps,eps)
laphecet [Wed, 18 Nov 2009 11:25:22 +0000 (11:25 +0000)]
Fixing the vector-based output (pdf,ps,eps)

14 years agoFixing problem with backward compatibility for old trigger decision objects recorded...
aszostak [Wed, 18 Nov 2009 11:20:53 +0000 (11:20 +0000)]
Fixing problem with backward compatibility for old trigger decision objects recorded before 25 Oct 2009.

14 years agoRevert file committed by mistake.
mtadel [Wed, 18 Nov 2009 11:02:57 +0000 (11:02 +0000)]
Revert file committed by mistake.

14 years agoRemove fallback VizDB init -- this is all in VizDB_init.C now.
mtadel [Wed, 18 Nov 2009 11:02:05 +0000 (11:02 +0000)]
Remove fallback VizDB init -- this is all in VizDB_init.C now.

14 years agoNew naming scheme for the EbyE tasks - Setting the phase space properly for the AOD...
pchrist [Wed, 18 Nov 2009 10:54:52 +0000 (10:54 +0000)]
New naming scheme for the EbyE tasks - Setting the phase space properly for the AOD proton ratio analysis

14 years agoReverting previous commit, done by mistake
masera [Wed, 18 Nov 2009 10:47:52 +0000 (10:47 +0000)]
Reverting previous commit, done by mistake

14 years agonew macro dealing with the static list of SSD bad channels to be masked (Panos)
masera [Wed, 18 Nov 2009 10:30:56 +0000 (10:30 +0000)]
new macro dealing with the static list of SSD bad channels to be masked (Panos)

14 years agoOups. Linux misses an include. And increasing the version number will not hurt either
laphecet [Wed, 18 Nov 2009 10:16:13 +0000 (10:16 +0000)]
Oups. Linux misses an include. And increasing the version number will not hurt either

14 years agoAdding a line to be able to generate core dumps online
laphecet [Wed, 18 Nov 2009 10:08:29 +0000 (10:08 +0000)]
Adding a line to be able to generate core dumps online

14 years ago- bug fix in tracklet fit due to moving away from TLinearFitter
abercuci [Wed, 18 Nov 2009 09:23:41 +0000 (09:23 +0000)]
- bug fix in tracklet fit due to moving away from TLinearFitter
- bug fix in cluster error usage
- added various protections in tracklet fitting procedure

14 years agoAdding the new default PIT ocdb entry.
cvetan [Wed, 18 Nov 2009 09:00:33 +0000 (09:00 +0000)]
Adding the new default PIT ocdb entry.

14 years agoLess verbose prtoton ratio task
pchrist [Wed, 18 Nov 2009 08:53:39 +0000 (08:53 +0000)]
Less verbose prtoton ratio task

14 years agoNew version of the train with several new wagons.
agheata [Wed, 18 Nov 2009 08:39:59 +0000 (08:39 +0000)]
New version of the train with several new wagons.

14 years agoAdded possibility to save canvases created by Terminate as pictures.
agheata [Wed, 18 Nov 2009 08:38:36 +0000 (08:38 +0000)]
Added possibility to save canvases created by Terminate as pictures.

14 years agoAddTaskKinkResonance.C not needed anymore
bhippoly [Wed, 18 Nov 2009 00:49:51 +0000 (00:49 +0000)]
AddTaskKinkResonance.C not needed anymore

14 years ago* AliEveGedEditor
mtadel [Tue, 17 Nov 2009 22:41:59 +0000 (22:41 +0000)]
* AliEveGedEditor
  New classes AliEveGedEditor and AliEveGedFrame.
  These will be needed to provide VizDB interaction.

* alieve_main.cxx
  Set class of GED editor before invoking TEveManager::Create().
  This is ifdefed for root >= 5.25.4.

14 years agoAliTPCcalibDButil.h - Aligngment data (AliRelAlignerKalman) median filter...
marian [Tue, 17 Nov 2009 22:29:51 +0000 (22:29 +0000)]
AliTPCcalibDButil.h             - Aligngment data (AliRelAlignerKalman) median filtering and smothing
AliTPCcalibDButil.cxx.diff          Typo correction

(Marian and Jens)

14 years agoAliTPCcalibDB.cxx.difF Add possibility to get RCU configuration, RCU Trigger...
marian [Tue, 17 Nov 2009 22:27:26 +0000 (22:27 +0000)]
AliTPCcalibDB.cxx.difF      Add possibility to get RCU configuration, RCU Trigger configuration, whether we triggered on L0 or L1
(Jens Wiechula)

14 years agoCreateRefMap.C new macro to create the referenc OCDB entry
marian [Tue, 17 Nov 2009 22:15:09 +0000 (22:15 +0000)]
CreateRefMap.C                  new macro to create the referenc OCDB entry
Jens

14 years agoChanged container name because of same name in other wagon on train. + bugfix overwri...
kaamodt [Tue, 17 Nov 2009 21:45:37 +0000 (21:45 +0000)]
Changed container name because of same name in other wagon on train. + bugfix overwriting the ConnectInputData of AnalysisTaskSE

14 years agoModified AddTask macroes to add output to one single file
pulvir [Tue, 17 Nov 2009 21:25:26 +0000 (21:25 +0000)]
Modified AddTask macroes to add output to one single file

14 years agoEntry with refence runs for different calibration
marian [Tue, 17 Nov 2009 21:05:43 +0000 (21:05 +0000)]
Entry with refence runs for different calibration
(Jens Wiechula)

14 years agoIndex fixes and protections added
cheynis [Tue, 17 Nov 2009 19:22:53 +0000 (19:22 +0000)]
Index fixes and protections added

14 years agoSavannah bug 58893 - fixing memory trashing
masera [Tue, 17 Nov 2009 19:02:05 +0000 (19:02 +0000)]
Savannah bug 58893 - fixing memory trashing

14 years agoFrom Pawel Debski:
mtadel [Tue, 17 Nov 2009 18:37:43 +0000 (18:37 +0000)]
From Pawel Debski:
Use consistent macro and VizDB tags.
Names of some objects need to be changed back to what they were.

From Matevz:
Enabled back esd_spd_tracklets() by default in visscan_init.C.

14 years agoAfter last changes in the reader default setting for filling input of detectors is...
gconesab [Tue, 17 Nov 2009 18:08:30 +0000 (18:08 +0000)]
After last changes in the reader default setting for filling input of detectors is kFALSE, need to switch on the detector you want in the configuration. Updated analysis train wagon

14 years agoRemove parenthesis around throw arguments.
mtadel [Tue, 17 Nov 2009 18:08:11 +0000 (18:08 +0000)]
Remove parenthesis around throw arguments.

14 years agoNew naming scheme for the output file
pchrist [Tue, 17 Nov 2009 17:03:13 +0000 (17:03 +0000)]
New naming scheme for the output file

14 years agoAliAnalysisTaskMuonTrackingEff: removal of warnings, passing the AliCheckDetElementRe...
martinez [Tue, 17 Nov 2009 16:26:49 +0000 (16:26 +0000)]
AliAnalysisTaskMuonTrackingEff: removal of warnings, passing the AliCheckDetElementResponse object as a member object. RunMuonTrackingEffAnalysis.C and MuonTrackingEffAnalysis.C: modified in accordance. AddTaskMUONTrackingEfficiency.C: macro returning an AliAnalysisTaskMuonTrackingEff, to be used in the PWG1 preformance train (Matthieu)

14 years agoImplement folder structure for task output
enrico [Tue, 17 Nov 2009 16:20:03 +0000 (16:20 +0000)]
Implement folder structure for task output

14 years agosmall correction
jotwinow [Tue, 17 Nov 2009 15:57:03 +0000 (15:57 +0000)]
small correction

14 years ago removed printout in Terminate
kleinb [Tue, 17 Nov 2009 15:36:02 +0000 (15:36 +0000)]
 removed printout in Terminate

14 years agoUpdated feed down task (Marek)
pchrist [Tue, 17 Nov 2009 15:24:14 +0000 (15:24 +0000)]
Updated feed down task (Marek)

14 years agoRight type for debug variable, fDebug taken from the jet header
dperrino [Tue, 17 Nov 2009 14:56:27 +0000 (14:56 +0000)]
Right type for debug variable, fDebug taken from the jet header

14 years agoadding more options to control the size of the GlobalTriggerDecision.
richterm [Tue, 17 Nov 2009 14:51:20 +0000 (14:51 +0000)]
adding more options to control the size of the GlobalTriggerDecision.
Currently, the bottleneck seems to be the streaming of the output object,
it is much slower if many input objects have been added. New options:
-forward-input  forwards the input object instead of adding them
-include-input=none  do not include anything in the decisionobject
-include-input=short only include a short TNames array which describes the
                     objects
-include-input=objects include all the objects, this is the current behavior
                       and remains the default

14 years agoUse common output file name but subdirectories for Kink analysis as well (hippolyt...
bhippoly [Tue, 17 Nov 2009 14:48:32 +0000 (14:48 +0000)]
Use common output file name but subdirectories for Kink analysis as well (hippolyt@in2p3.fr)

14 years agoReduced printout
morsch [Tue, 17 Nov 2009 14:47:57 +0000 (14:47 +0000)]
Reduced printout

14 years agowarning removal
jotwinow [Tue, 17 Nov 2009 14:34:11 +0000 (14:34 +0000)]
warning removal

14 years ago*Correct* use common output file name but subdirectories (hippolyt@in2p3.fr)
bhippoly [Tue, 17 Nov 2009 14:32:34 +0000 (14:32 +0000)]
*Correct* use common output file name but subdirectories (hippolyt@in2p3.fr)

14 years agoCoding violations corrected.
morsch [Tue, 17 Nov 2009 14:25:41 +0000 (14:25 +0000)]
Coding violations corrected.

14 years agoUpdate of mchview related classes to allow easy printing of trackerdata plots.
laphecet [Tue, 17 Nov 2009 14:23:31 +0000 (14:23 +0000)]
Update of mchview related classes to allow easy printing of trackerdata plots.

The heart of the modifications is the addition of the AliMUONPainterMatrix::Draw and
AliMUONPainterMatrix::CreateCanvas methods.

Those methods will be usefull for the MUON tracker shifter (via amoreMCH).

------ Details below :

AliMUONAttPainter

Changed how the name is constructed.

AliMUONMchViewApplication
AliMUONPainterMasterFrame

Adding Print button(s).
Internal reorganization to ease the creation of new tabs with painter master frames.

AliMUONPainterColorSlider

Small correction.

AliMUONPainterDataSourceFrame

Added CreatePedestalCanvases and CreateFullTracker.

AliMUONPainterHelper

Removing no longer used parts.

AliMUONPainterMatrix

Changed the naming convention, and added Draw and CreateCanvas methods.

AliMUONPainterMatrixFrame

Updated SaveAs method

mchview.cxx

Going to version 1.03

14 years agoWarning fix
laphecet [Tue, 17 Nov 2009 14:23:13 +0000 (14:23 +0000)]
Warning fix

14 years agoAdded flags for each task
dainese [Tue, 17 Nov 2009 14:22:45 +0000 (14:22 +0000)]
Added flags for each task

14 years agoIncrement version number
cblume [Tue, 17 Nov 2009 14:19:52 +0000 (14:19 +0000)]
Increment version number

14 years agoUpdate AliResonanceKinkLikeSign::ConnectInputData (M.Gheata)
bhippoly [Tue, 17 Nov 2009 14:19:38 +0000 (14:19 +0000)]
Update AliResonanceKinkLikeSign::ConnectInputData (M.Gheata)

14 years agoFix for bug #58857: AliESDEvent::GetFMDData is not const
hristov [Tue, 17 Nov 2009 14:14:13 +0000 (14:14 +0000)]
Fix for bug #58857: AliESDEvent::GetFMDData is not const

14 years agoUse common output file name but subdirectories (hippolyt@in2p3.fr)
bhippoly [Tue, 17 Nov 2009 14:04:08 +0000 (14:04 +0000)]
Use common output file name but subdirectories (hippolyt@in2p3.fr)

14 years agoFixing warning
laphecet [Tue, 17 Nov 2009 14:03:59 +0000 (14:03 +0000)]
Fixing warning

14 years agoadded multiplicity
snelling [Tue, 17 Nov 2009 13:48:55 +0000 (13:48 +0000)]
added multiplicity

14 years agonew macros added
jotwinow [Tue, 17 Nov 2009 13:47:13 +0000 (13:47 +0000)]
new macros added

14 years agoremoved, names will be changed
jotwinow [Tue, 17 Nov 2009 13:30:09 +0000 (13:30 +0000)]
removed, names will be changed

14 years agoFix for CMake
hristov [Tue, 17 Nov 2009 13:21:26 +0000 (13:21 +0000)]
Fix for CMake

14 years agoAdded protections
dainese [Tue, 17 Nov 2009 12:55:07 +0000 (12:55 +0000)]
Added protections

14 years agoAdding libXMLParser
laphecet [Tue, 17 Nov 2009 12:53:42 +0000 (12:53 +0000)]
Adding libXMLParser

14 years agoUpdating example reco macro for real data
laphecet [Tue, 17 Nov 2009 12:53:21 +0000 (12:53 +0000)]
Updating example reco macro for real data

14 years agoSmall doc
hristov [Tue, 17 Nov 2009 12:28:57 +0000 (12:28 +0000)]
Small doc

14 years agoMajor update of the CMake compilation:
hristov [Tue, 17 Nov 2009 12:20:55 +0000 (12:20 +0000)]
Major update of the CMake compilation:
- automatic generation of the class lists based on *.pkg files
- integration of the code checker
- creation of the binaries and the library in separate subdirectories
- improvements in the CMake macros (ALICEmacro, FindROOT)

More changes will come after this set is exposed to the users.

Florian, Stefan

14 years agoadding libAliHLTMUON to trigger lib dependencies
richterm [Tue, 17 Nov 2009 12:18:13 +0000 (12:18 +0000)]
adding libAliHLTMUON to trigger lib dependencies

14 years agoChanges in frame required to work without AODs output in case of usage of AliAnaCalor...
gconesab [Tue, 17 Nov 2009 12:11:56 +0000 (12:11 +0000)]
Changes in frame required to work without AODs output in case of usage of AliAnaCalorimeterQA
- AliAnaCalorimeterQA: More independent of the reader, no gets ESDs or AODs directly from
input event.
- AliMCAnalysisUtils: New check on the overlap of photons in the clusters. Input for CheckOrigin
methods is now either a single label (more contributing to the cluster) or the list of labels stored
in calo clusters.

14 years agoremove control character
fca [Tue, 17 Nov 2009 11:28:38 +0000 (11:28 +0000)]
remove control character