]> git.uio.no Git - u/mrichter/AliRoot.git/log
u/mrichter/AliRoot.git
13 years agoapply corrections PbPb - Markus Koehler
jotwinow [Mon, 1 Nov 2010 12:37:11 +0000 (12:37 +0000)]
apply corrections PbPb - Markus Koehler

13 years agocoverity defect forward null
gconesab [Mon, 1 Nov 2010 11:58:53 +0000 (11:58 +0000)]
coverity defect forward null

13 years agoUpdates in JCORRAN (Filip and Dongjo)
gconesab [Mon, 1 Nov 2010 11:47:43 +0000 (11:47 +0000)]
Updates in JCORRAN (Filip and Dongjo)

List of changes :

AddTaskJCORRANTask.C

     - Event selection:  select only minimum bias or high multiplicity trigger
        jctask->SelectCollisionCandidates(AliVEvent::kMB | AliVEvent::kHighMult);

    - New track selection cuts:

       AliESDtrackCuts* esdTrackCuts = new AliESDtrackCuts("AliESDtrackCuts", "Loose");
       esdTrackCuts->SetMinNClustersTPC(70);
       esdTrackCuts->SetMaxChi2PerClusterTPC(4.0);
       esdTrackCuts->SetRequireTPCRefit(kTRUE);
       esdTrackCuts->SetRequireITSRefit(kTRUE);
       esdTrackCuts->SetAcceptKinkDaughters(kFALSE);
       esdTrackCuts->SetMaxDCAToVertexXY(3.5);
       esdTrackCuts->SetMaxDCAToVertexZ(3.5);
       esdTrackCuts->SetMaxDCAToVertexXYPtDep("0.0350+0.0420/pt^0.9");

     -output of the task is a nonstandard AOD

--------------------------------------------------------------------------------

AliJCORRANTask.h
AliJCORRANTask.cxx

      - branch fMCTrackList is added only in case of sim data

      - AOD track selection is done in the function
        bool AliJCORRANTask::AcceptAODTrack(AliAODTrack* aodTrack)
        all cuts from AliESDtrackCuts object are included except

    - ReadAODTracks
        filling of AOD track information suplemented by information
        (z vertex, dE/dx, DCA, TPC label, tracklet multiplicity  )

      - update of names of EMCAL Aliroot functions in ReadESD/AODCaloClusters

      - flavour of selected tracks  and clusters initialized to kNone
         (ReadAODTracks, ReadAODCaloClusters, ReadESDCaloClusters, ReadESDTracks)

     - storing to AOD :
        from unknown reason  branches are filled only when
        we call  outputHandler->SetFillAOD(kTRUE); at the UserExec()

       if(fTrackList->GetNTracks() > 0 ||
         fPhotonList->GetNPhotons() >0 ||
         (fIsRealOrMC && fMCTrackList->GetNTracks()>0)){

         AliAODHandler* outputHandler =
         (AliAODHandler*) ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
         outputHandler->SetFillAOD(kTRUE);
       }

    -  changed handeling of EMCALUtils  singleton  object

---------------------------------------------------------------------------------

AliJTrack : added its and tpc labels

      - type of Status changed from UInt_t to ULong64_t
     - filling of covariance matrix removed from ESD/AOD trak information

---------------------------------------------------------------------------------
JConst.h
      -Added new trigger bit for high multiplicity trigger. JC trigger mask is now MB=0TBit, HighMult = 1 TBit
      enum TriggerBitJCorran   {kMinBiasTriggerBitJCorran, kHighMultTriggerBitJCorran};

----------------------------------------------------------------------------------

AliJPhoton.h

      - fixed memory leakage problem
----------------------------------------------------------------------------------

in other files, we did only minor changes to obey coding rules

 AliJHeader.h
AliJPhoton.cxx
AliJPhoton.h
AliJRunHeader.cxx
AliJRunHeader.h
AliPhJBaseTrack.cxx
AliPhJBaseTrack.h
AliPhJPiZero.cxx
AliPhJPiZero.h

13 years agoupdate to run TPC+ITS analysis
jotwinow [Mon, 1 Nov 2010 11:45:49 +0000 (11:45 +0000)]
update to run TPC+ITS analysis

13 years agofixed coding rules violation
jotwinow [Mon, 1 Nov 2010 11:44:58 +0000 (11:44 +0000)]
fixed coding rules violation

13 years agoMinor fixes to analysis code
cholm [Mon, 1 Nov 2010 11:20:40 +0000 (11:20 +0000)]
Minor fixes to analysis code

13 years agoAdded scripts
cholm [Mon, 1 Nov 2010 11:15:20 +0000 (11:15 +0000)]
Added scripts

13 years agoUndo last change - mistake on my part
cholm [Mon, 1 Nov 2010 11:14:53 +0000 (11:14 +0000)]
Undo last change - mistake on my part

13 years agoAdded virtual method AliVCuts::GetStatistics(Option_t *) defining the interface to...
agheata [Mon, 1 Nov 2010 11:13:12 +0000 (11:13 +0000)]
Added virtual method AliVCuts::GetStatistics(Option_t *) defining the interface to get the statistics object from the cuts (if any). The physics selection returns its fHistStatistics. The string option can be ALL for fHistStatistics[0] or BIN0 for fHistStatistics[1]

13 years agoMerge branch 'multipleThreads' into newdevel
slindal [Mon, 1 Nov 2010 11:07:09 +0000 (11:07 +0000)]
Merge branch 'multipleThreads' into newdevel

* multipleThreads:
  removed falseley named class
  Updated EMCAL geometry.
  Read from HLTesdTree

13 years agoCosmetics. Fixed bug preventing creation of async block list
slindal [Mon, 1 Nov 2010 11:03:48 +0000 (11:03 +0000)]
Cosmetics. Fixed bug preventing creation of async block list

13 years agoAdded scripts
cholm [Mon, 1 Nov 2010 10:50:36 +0000 (10:50 +0000)]
Added scripts

13 years agoFixed some warning messages on request from FCA
cholm [Mon, 1 Nov 2010 10:48:41 +0000 (10:48 +0000)]
Fixed some warning messages on request from FCA

13 years agoTry to fix Coverity defect
cblume [Mon, 1 Nov 2010 10:00:56 +0000 (10:00 +0000)]
Try to fix Coverity defect

13 years agomove tracker config. params to AliTRDReconstructor class
abercuci [Mon, 1 Nov 2010 09:42:56 +0000 (09:42 +0000)]
move tracker config. params to AliTRDReconstructor class

13 years agoi forgot header, sorry
alla [Mon, 1 Nov 2010 09:11:57 +0000 (09:11 +0000)]
i forgot header, sorry

13 years agoi forgot header, sorry
alla [Mon, 1 Nov 2010 09:02:30 +0000 (09:02 +0000)]
i forgot header, sorry

13 years agoTurn off weak decays
akisiel [Sun, 31 Oct 2010 23:06:56 +0000 (23:06 +0000)]
Turn off weak decays

13 years agoFixed memory leak (Yves)
hristov [Sun, 31 Oct 2010 21:24:05 +0000 (21:24 +0000)]
Fixed memory leak (Yves)

13 years ago enabling the filling of correlations between reconstructed and reconstructed minus...
kleinb [Sun, 31 Oct 2010 21:19:55 +0000 (21:19 +0000)]
 enabling the filling of correlations between reconstructed and reconstructed minus background, some cleanup in AddTaskSpectrum2

13 years ago- set properties for AliHLTV0HistoComponent.h
kkanaki [Sun, 31 Oct 2010 21:10:45 +0000 (21:10 +0000)]
- set properties for AliHLTV0HistoComponent.h
- added more configuration examples in rec-hlt-globalhisto.C
- added the V0 loop (not complete, produces only the Armenteros-Podolanski plot at the moment)

13 years agonew monitoring and checker
alla [Sun, 31 Oct 2010 21:08:53 +0000 (21:08 +0000)]
new monitoring and checker

13 years agodo not calculate background for all Cluster Tasks
kleinb [Sun, 31 Oct 2010 19:29:39 +0000 (19:29 +0000)]
do not calculate background for all Cluster Tasks

13 years ago missing from rev 44785
kleinb [Sun, 31 Oct 2010 19:28:15 +0000 (19:28 +0000)]
 missing from rev 44785

13 years agoCalculating Background only when the background branch is also stored save computing...
kleinb [Sun, 31 Oct 2010 19:27:32 +0000 (19:27 +0000)]
Calculating Background only when the background branch is also stored save computing time

13 years agoMore decay options
morsch [Sun, 31 Oct 2010 18:38:57 +0000 (18:38 +0000)]
More decay options
IHPR2(12)
1: old behavior
2: old behavior + heavy baryons
3: as AliPythia default

13 years agocorrect the way of the correlated array with tracks or clusters is set
gconesab [Sun, 31 Oct 2010 16:06:21 +0000 (16:06 +0000)]
correct the way of the correlated array with tracks or clusters is set

13 years agoChanges to make the macro compilable + fit of DCA with standard root classes
mfloris [Sun, 31 Oct 2010 15:52:50 +0000 (15:52 +0000)]
Changes to make the macro compilable + fit of DCA with standard root classes

13 years agoAdd line to allow filling deltaAODs if requested
gconesab [Sun, 31 Oct 2010 15:16:40 +0000 (15:16 +0000)]
Add line to allow filling deltaAODs if requested

13 years agoextending tracking efficiency and contamination into high pT region by constant fit
jgrosseo [Sun, 31 Oct 2010 14:56:29 +0000 (14:56 +0000)]
extending tracking efficiency and contamination into high pT region by constant fit
added functions for estimating syst. unc. and plotting

13 years ago- created OCDB folder and empty configuration file for the V0Histo component
kkanaki [Sun, 31 Oct 2010 11:59:21 +0000 (11:59 +0000)]
- created OCDB folder and empty configuration file for the V0Histo component

13 years ago- add line for properties to appear
kkanaki [Sun, 31 Oct 2010 11:56:41 +0000 (11:56 +0000)]
- add line for properties to appear

13 years ago- set properties
kkanaki [Sun, 31 Oct 2010 11:55:20 +0000 (11:55 +0000)]
- set properties

13 years ago- correct the OCDB path in the Reconfigure method
kkanaki [Sun, 31 Oct 2010 11:53:18 +0000 (11:53 +0000)]
- correct the OCDB path in the Reconfigure method

13 years ago- reset the number of V0s
kkanaki [Sun, 31 Oct 2010 11:47:16 +0000 (11:47 +0000)]
- reset the number of V0s

13 years ago- fix counting if primary particles
morsch [Sun, 31 Oct 2010 11:21:45 +0000 (11:21 +0000)]
- fix counting if primary particles
- protection against empty events
(C. Loizides)

13 years agounnecessary library dependence removed
sgorbuno [Sun, 31 Oct 2010 11:11:34 +0000 (11:11 +0000)]
unnecessary library dependence removed

13 years agoFilling the EventQuality histogram for book keeping
amarin [Sun, 31 Oct 2010 10:07:16 +0000 (10:07 +0000)]
Filling the EventQuality histogram for book keeping

13 years agoTask for tower inter-calibration (A. De Falco)
coppedis [Sun, 31 Oct 2010 07:35:55 +0000 (07:35 +0000)]
Task for tower inter-calibration (A. De Falco)

13 years ago- fixed the typo that prevented the vertex histograms to be produced
kkanaki [Sat, 30 Oct 2010 19:58:40 +0000 (19:58 +0000)]
- fixed the typo that prevented the vertex histograms to be produced

13 years ago- defined the origin of the output data type to be kAliHLTDataOriginOut (needed for...
kkanaki [Sat, 30 Oct 2010 19:55:52 +0000 (19:55 +0000)]
- defined the origin of the output data type to be kAliHLTDataOriginOut (needed for the online display)

13 years agoPossibility to analyse V0AND using a flag, extra cut number
amarin [Sat, 30 Oct 2010 18:16:50 +0000 (18:16 +0000)]
Possibility to analyse V0AND using a flag, extra cut number

13 years agoInclude CINT5 and CMUS5 trigger. Add the possibility to select tracks matching the...
martinez [Sat, 30 Oct 2010 17:46:13 +0000 (17:46 +0000)]
Include CINT5 and CMUS5 trigger. Add the possibility to select tracks matching the trigger to fill histograms (Phlippe P.)

13 years agoMerge branch 'multipleThreads'
slindal [Sat, 30 Oct 2010 09:52:05 +0000 (09:52 +0000)]
Merge branch 'multipleThreads'

* multipleThreads:
  multithread with TThread
  Bugfixes
  Updates, enabling use of offline buffer
  Major updates, making using Offline event buffer possible
  Adding offline.C onlinedisplay macro
  Added offline event manager instance
  Possibly stupid commit. Perhaps use the previous?
  working with multithre
  Added hlt event manager, not compileable

13 years agoMerge branch 'displayDevel'
slindal [Sat, 30 Oct 2010 09:51:14 +0000 (09:51 +0000)]
Merge branch 'displayDevel'

* displayDevel:
  Made all EVE processors TEveElementList descendants
  Updated AliHLTEveCalo HLT to deal with offline eve
  Updated homer manager to automatically pre-fetch events
  updated processing functions to use AlieveHLTEventManager

13 years agocompilation warnings fixed
sgorbuno [Fri, 29 Oct 2010 23:49:06 +0000 (23:49 +0000)]
compilation warnings fixed

13 years agobug fix
sgorbuno [Fri, 29 Oct 2010 23:25:20 +0000 (23:25 +0000)]
bug fix

13 years agoSmall change to get info on rejection reason
dainese [Fri, 29 Oct 2010 23:12:32 +0000 (23:12 +0000)]
Small change to get info on rejection reason

13 years agoAdded method for pileup rejection with SPD vertices (Francesco)
dainese [Fri, 29 Oct 2010 22:46:47 +0000 (22:46 +0000)]
Added method for pileup rejection with SPD vertices (Francesco)

13 years agooutput data size of slice trackers is reduced by 25% by optimising AliHLTTPCCASliceOu...
sgorbuno [Fri, 29 Oct 2010 22:36:49 +0000 (22:36 +0000)]
output data size of slice trackers is reduced by 25% by optimising AliHLTTPCCASliceOutCluster data structure

13 years agospeed up of compression by removing a function call
sgorbuno [Fri, 29 Oct 2010 22:03:10 +0000 (22:03 +0000)]
speed up of compression by removing a function call

13 years agodNdPtAnalysisComponent added
sgorbuno [Fri, 29 Oct 2010 21:20:16 +0000 (21:20 +0000)]
dNdPtAnalysisComponent added

13 years agoESDevent->VertexTPC is filled (the vertex is needed for dNdPt analysis )
sgorbuno [Fri, 29 Oct 2010 21:13:28 +0000 (21:13 +0000)]
ESDevent->VertexTPC is filled (the vertex is needed for dNdPt analysis )

13 years agoinput multiplier is set to realistic value 0.6
sgorbuno [Fri, 29 Oct 2010 20:45:19 +0000 (20:45 +0000)]
input multiplier is set to realistic value 0.6

13 years agohistogram cast requested by R.Vernet
bhippoly [Fri, 29 Oct 2010 20:13:00 +0000 (20:13 +0000)]
histogram cast requested by R.Vernet

13 years ago- common struct corrected
morsch [Fri, 29 Oct 2010 19:58:46 +0000 (19:58 +0000)]
- common struct corrected
- save impact parameter in header

13 years agoClasses for track-based multiplicity analysis in PbPb. Initial commit.
mfloris [Fri, 29 Oct 2010 19:35:39 +0000 (19:35 +0000)]
Classes for track-based multiplicity analysis in PbPb. Initial commit.

13 years agoupdated dndeta analysis for common plots for MB&UE working group (Chiara)
jgrosseo [Fri, 29 Oct 2010 18:27:12 +0000 (18:27 +0000)]
updated dndeta analysis for common plots for MB&UE working group (Chiara)

13 years ago- commented out the body of Terminate(), not used any more
kkanaki [Fri, 29 Oct 2010 17:10:56 +0000 (17:10 +0000)]
- commented out the body of Terminate(), not used any more

13 years agopid selection in the cut for particle and antiparticle
snelling [Fri, 29 Oct 2010 17:09:28 +0000 (17:09 +0000)]
pid selection in the cut for particle and antiparticle

13 years agosetting the default cut with proper length
amarin [Fri, 29 Oct 2010 16:58:25 +0000 (16:58 +0000)]
setting the default cut with proper length

13 years agoExtra number in cutId for pileup rejection. Flag to switch on pileup rejection. Event...
amarin [Fri, 29 Oct 2010 16:54:53 +0000 (16:54 +0000)]
Extra number in cutId for pileup rejection. Flag to switch on pileup rejection. EventQuality 4 means event rejected due to pileup . ProcessMC loop only to Nprimary

13 years agoReverting commit 44732
hristov [Fri, 29 Oct 2010 15:52:51 +0000 (15:52 +0000)]
Reverting commit 44732

13 years ago- added plugin function to overwrite the contents of the working and output directory...
kkanaki [Fri, 29 Oct 2010 15:48:56 +0000 (15:48 +0000)]
- added plugin function to overwrite the contents of the working and output directory when relaunching the task macro

13 years agoFixed coding violations and added new cuts to the cut selection
kaamodt [Fri, 29 Oct 2010 14:24:06 +0000 (14:24 +0000)]
Fixed coding violations and added new cuts to the cut selection

13 years agoChanges for report #74527: request to commit code under TRIGGER to handle TOF trigger...
hristov [Fri, 29 Oct 2010 14:20:46 +0000 (14:20 +0000)]
Changes for report #74527: request to commit code under TRIGGER to handle TOF trigger info

13 years agoCorrected bug - 2 media had the same material
kowal2 [Fri, 29 Oct 2010 14:15:23 +0000 (14:15 +0000)]
Corrected bug - 2 media had the same material

13 years agoUpdates for Mixing (M. Vala)
morsch [Fri, 29 Oct 2010 11:39:50 +0000 (11:39 +0000)]
Updates for Mixing (M. Vala)

13 years ago- added the DCA for the HLT tracks, as calculated by the HLT reconstruction, however...
kkanaki [Fri, 29 Oct 2010 11:25:54 +0000 (11:25 +0000)]
- added the DCA for the HLT tracks, as calculated by the HLT reconstruction, however not activated,
  as not all ESD files contain this information and the distribution will be empty for older HLT runs.
  Besides the DCA value differences are minor between what the task calculates at the momemt and what
  the HLT reconstruction delivers. The commit is for completion of information.

13 years agoCentrality selection task update (A. Toia)
morsch [Fri, 29 Oct 2010 11:09:24 +0000 (11:09 +0000)]
Centrality selection task update (A. Toia)

13 years agoTask to inter-calibrate hadronic PMTs (by A. De Falco)
coppedis [Fri, 29 Oct 2010 10:34:52 +0000 (10:34 +0000)]
Task to inter-calibrate hadronic PMTs (by A. De Falco)

13 years agoUpdates (A. Toia)
morsch [Fri, 29 Oct 2010 09:41:52 +0000 (09:41 +0000)]
Updates (A. Toia)

13 years agoCentrality Task (A. Toia)
morsch [Fri, 29 Oct 2010 09:13:48 +0000 (09:13 +0000)]
Centrality Task (A. Toia)

13 years agomove warning to debug message
abercuci [Fri, 29 Oct 2010 09:06:57 +0000 (09:06 +0000)]
move warning to debug message

13 years agofix coverity
abercuci [Fri, 29 Oct 2010 09:02:21 +0000 (09:02 +0000)]
fix coverity

13 years agofix coverity and codding conventions
abercuci [Fri, 29 Oct 2010 08:59:47 +0000 (08:59 +0000)]
fix coverity and codding conventions

13 years agofix codding conventions
abercuci [Fri, 29 Oct 2010 08:33:44 +0000 (08:33 +0000)]
fix codding conventions

13 years agoChanges for new signal timing
coppedis [Fri, 29 Oct 2010 08:15:05 +0000 (08:15 +0000)]
Changes for new signal timing

13 years agoAdding trigger counters class derived from AliHLTScalars, which will be used to store...
aszostak [Thu, 28 Oct 2010 23:06:20 +0000 (23:06 +0000)]
Adding trigger counters class derived from AliHLTScalars, which will be used to store global HLT trigger counts and their rates.

13 years agoModifications required for deriving classes.
aszostak [Thu, 28 Oct 2010 23:04:59 +0000 (23:04 +0000)]
Modifications required for deriving classes.

13 years agoFixing error message.
aszostak [Thu, 28 Oct 2010 23:03:05 +0000 (23:03 +0000)]
Fixing error message.

13 years agoFix for par files compilation (Philippe)
dainese [Thu, 28 Oct 2010 18:33:57 +0000 (18:33 +0000)]
Fix for par files compilation (Philippe)

13 years agomacro AddTaskHMPID.C, removed by mistake, added
gvolpe [Thu, 28 Oct 2010 16:51:19 +0000 (16:51 +0000)]
macro AddTaskHMPID.C, removed by mistake, added

13 years ago- added more information about the primary vertex
kkanaki [Thu, 28 Oct 2010 15:42:11 +0000 (15:42 +0000)]
- added more information about the primary vertex

13 years agofix: generate DataContainer highmult data only it is needed
esicking [Thu, 28 Oct 2010 15:17:44 +0000 (15:17 +0000)]
fix: generate DataContainer highmult data only it is needed

13 years agoSetting rmaxcut for all extrem r cuts definitions, otherwise default value is not...
amarin [Thu, 28 Oct 2010 15:14:40 +0000 (15:14 +0000)]
Setting rmaxcut for all extrem r cuts definitions, otherwise default value is not set again.

13 years agoCorrected protection.
morsch [Thu, 28 Oct 2010 15:07:56 +0000 (15:07 +0000)]
Corrected protection.
Fixes https://savannah.cern.ch/bugs/index.php?74532

13 years agoUpdated DAs
coppedis [Thu, 28 Oct 2010 13:46:42 +0000 (13:46 +0000)]
Updated DAs

13 years agoUpdates (A. Toia)
morsch [Thu, 28 Oct 2010 13:13:09 +0000 (13:13 +0000)]
Updates (A. Toia)

13 years agoCentrality selection macro and test input (A. Toia)
morsch [Thu, 28 Oct 2010 13:07:53 +0000 (13:07 +0000)]
Centrality selection macro and test input (A. Toia)

13 years agoCentrality selection task. (A. Toia)
morsch [Thu, 28 Oct 2010 13:05:33 +0000 (13:05 +0000)]
Centrality selection task. (A. Toia)

13 years agochanges are needed in order to implement the code to be used in the TRIGGER PreProces...
rpreghen [Thu, 28 Oct 2010 12:45:01 +0000 (12:45 +0000)]
changes are needed in order to implement the code to be used in the TRIGGER PreProcessor which will store in the OCDB a new object containing the relevant information about TOF trigger status for each run

13 years agochanges to include AliPerformanceMach component (Michael Knichel)
jotwinow [Thu, 28 Oct 2010 08:40:24 +0000 (08:40 +0000)]
changes to include AliPerformanceMach component (Michael Knichel)

13 years agoimplementing the copy contructors for two helper classes because compiler on macos...
richterm [Thu, 28 Oct 2010 07:35:15 +0000 (07:35 +0000)]
implementing the copy contructors for two helper classes because compiler on macos seems to have a different implementation of stl::find which needs the copy constructor. Other implementations avoid this

Solves compilation error
***** Compiling HLT/BASE/AliHLTComponent.cxx *****
HLT/BASE/AliHLTComponent.cxx: In member function ‘int AliHLTComponent::ProcessEvent(const AliHLTComponentEventData&, const AliHLTComponentBlockData*, AliHLTComponentTriggerData&, AliHLTUInt8_t*, AliHLTUInt32_t&, AliHLTUInt32_t&, AliHLTComponentBlockData*&, AliHLTComponentEventDoneData*&)’:
HLT/BASE/AliHLTComponent.cxx:1733: error: ‘<unnamed>::AliHLTComponentStatisticsId::AliHLTComponentStatisticsId(const<unnamed>::AliHLTComponentStatisticsId&)’ is private
HLT/BASE/AliHLTComponent.cxx:1899: error: within this context
HLT/BASE/AliHLTComponent.cxx:1755: error: ‘<unnamed>::AliHLTComponentBlockDataSpecification::AliHLTComponentBlockDataSpecification(const<unnamed>::AliHLTComponentBlockDataSpecification&)’ is private
HLT/BASE/AliHLTComponent.cxx:1906: error: within this context
make[1]: *** [HLT/tgt_macosx64/BASE/AliHLTComponent.o] Error 1
make: *** [default] Error 2

13 years agoEMCAL_FIRSTYEARV1 added to the valid name of geometry
pavlinov [Thu, 28 Oct 2010 07:15:13 +0000 (07:15 +0000)]
EMCAL_FIRSTYEARV1 added to the valid name of geometry

13 years agoAdding a new common utility class to hold a list of named scalars.
aszostak [Thu, 28 Oct 2010 00:33:51 +0000 (00:33 +0000)]
Adding a new common utility class to hold a list of named scalars.

13 years agoconverting AliHLTGlobalHistogramVariables to template class in order to be used with...
richterm [Wed, 27 Oct 2010 23:44:32 +0000 (23:44 +0000)]
converting AliHLTGlobalHistogramVariables to template class in order to be used with both float and int values
adding track integer value array to the component, currently Track_status is the only variable

13 years agoNew class for normalization studies (Giacomo)
dainese [Wed, 27 Oct 2010 23:22:14 +0000 (23:22 +0000)]
New class for normalization studies (Giacomo)

13 years agoChange to fix par files compilation (ChiaraB)
dainese [Wed, 27 Oct 2010 23:19:44 +0000 (23:19 +0000)]
Change to fix par files compilation (ChiaraB)

13 years agoPossibility for more selective PID (Giacomo)
dainese [Wed, 27 Oct 2010 23:18:11 +0000 (23:18 +0000)]
Possibility for more selective PID (Giacomo)