Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
morsch committed Jun 7, 2013
2 parents 82e2e6b + bb2def9 commit 2b2cd76
Show file tree
Hide file tree
Showing 23 changed files with 2,533 additions and 2,799 deletions.
14 changes: 14 additions & 0 deletions HLT/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
*~
COPYING
INSTALL
aclocal.m4
autom4te.cache/
build/
config.guess
config.log
config.sub
configure
depcomp
install-sh
ltmain.sh
missing
1 change: 0 additions & 1 deletion HLT/BASE/setenv.csh.in
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ set ADD_BINDIR=
set ADD_BINDIR="$bindir $ADD_BINDIR"
set ADD_BINDIR="@ALIROOTBINDIR@ $ADD_BINDIR"
set ADD_BINDIR="@ROOTBINDIR@ $ADD_BINDIR"
set ADD_BINDIR="@HOMER_BINDIR@ $ADD_BINDIR"
if ( $?PATH == 0 ) setenv PATH ""
foreach i ($ADD_BINDIR)
setenv PATH "${i}:$PATH"
Expand Down
1 change: 0 additions & 1 deletion HLT/BASE/setenv.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,4 @@ for i in $ADD_LIBDIR ; do export LD_LIBRARY_PATH="$i:$LD_LIBRARY_PATH"; done
ADD_BINDIR="$bindir $ADD_BINDIR"
ADD_BINDIR="@ALIROOTBINDIR@ $ADD_BINDIR"
ADD_BINDIR="@ROOTBINDIR@ $ADD_BINDIR"
ADD_BINDIR="@HOMER_BINDIR@ $ADD_BINDIR"
for i in $ADD_BINDIR ; do export PATH="${i}:$PATH"; done
13 changes: 0 additions & 13 deletions HLT/BASE/util/AliHLTESDCaloClusterMaker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -69,27 +69,14 @@ AliHLTESDCaloClusterMaker::FillESD(AliESDEvent *esdPtr, const AliHLTCaloClusterH
AliESDCaloCluster esdCluster;

esdCluster.SetID(caloClusterStructPtr->fID);
#ifndef HAVE_NOT_ALIVCLUSTER // backward compatibility for r42844
esdCluster.SetType(caloClusterStructPtr->fClusterType);
#else
esdCluster.SetClusterType(caloClusterStructPtr->fClusterType);
#endif
esdCluster.SetPosition((Float_t*)(caloClusterStructPtr->fGlobalPos));
esdCluster.SetE(caloClusterStructPtr->fEnergy);
esdCluster.SetTOF(caloClusterStructPtr->fTOF);
#ifndef HAVE_NOT_ALIVCLUSTER // backward compatibility for r42844
esdCluster.SetDispersion(caloClusterStructPtr->fDispersion);
esdCluster.SetChi2(caloClusterStructPtr->fFitQuality);
#else
esdCluster.SetClusterDisp(caloClusterStructPtr->fDispersion);
esdCluster.SetClusterChi2(caloClusterStructPtr->fFitQuality);
#endif
const Float_t *pid = caloClusterStructPtr->fPID;
#ifndef HAVE_NOT_ALIVCLUSTER // backward compatibility for r42844
esdCluster.SetPID(pid);
#else
esdCluster.SetPid(pid);
#endif
esdCluster.SetM20(caloClusterStructPtr->fM20);
esdCluster.SetM02(caloClusterStructPtr->fM02);
esdCluster.SetNExMax(caloClusterStructPtr->fNExMax);
Expand Down
4 changes: 0 additions & 4 deletions HLT/CALO/AliHLTCaloClusterAnalyser.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,7 @@ AliHLTCaloClusterAnalyser::AliHLTCaloClusterAnalyser() :
fDoPID(false),
fHaveDistanceToBadChannel(false),
fGeometry(0),
#ifndef HAVE_NOT_ALIVCLUSTER // backward compatibility for r42844
fClusterType(AliVCluster::kPHOSNeutral),
#else
fClusterType(AliESDCaloCluster::kPHOSCluster),
#endif
fRecoParamsPtr(0),
fCutOnSingleCellClusters(false),
fSingleCellEnergyCut(0.5)
Expand Down
15 changes: 0 additions & 15 deletions HLT/MUON/OfflineInterface/AliHLTMUONDigitPublisherComponent.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -684,12 +684,7 @@ int AliHLTMUONDigitPublisherComponent::GetEvent(
}

// Make sure we have the correct CTP trigger loaded.
#ifndef HAVE_NOT_ALIRUNLOADER30859
AliRunLoader* runloader = AliRunLoader::Instance();
#else
// the old way before rev 30859
AliRunLoader *runloader = AliRunLoader::GetRunLoader();
#endif
if (runloader != NULL)
{
if (runloader->GetTrigger() == NULL)
Expand Down Expand Up @@ -923,12 +918,7 @@ int AliHLTMUONDigitPublisherComponent::WriteTrackerDDL(
AliRawDataHeader* header = reinterpret_cast<AliRawDataHeader*>(outBuffer);
// Fill header with default values.
*header = AliRawDataHeader();
#ifndef HAVE_NOT_ALIRUNLOADER30859
AliRunLoader* runloader = AliRunLoader::Instance();
#else
// the old way before rev 30859
AliRunLoader *runloader = AliRunLoader::GetRunLoader();
#endif
if (runloader != NULL)
{
if (runloader->GetTrigger() != NULL)
Expand Down Expand Up @@ -1135,12 +1125,7 @@ int AliHLTMUONDigitPublisherComponent::WriteTriggerDDL(
AliRawDataHeader* header = reinterpret_cast<AliRawDataHeader*>(outBuffer);
// Fill header with default values.
*header = AliRawDataHeader();
#ifndef HAVE_NOT_ALIRUNLOADER30859
AliRunLoader* runloader = AliRunLoader::Instance();
#else
// the old way before rev 30859
AliRunLoader *runloader = AliRunLoader::GetRunLoader();
#endif
if (runloader != NULL)
{
if (runloader->GetTrigger() != NULL)
Expand Down
2 changes: 0 additions & 2 deletions HLT/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ if EN_HLT_VZERO
VZERO_DIR=VZERO
endif

if EN_HLT_QA
QA_DIR=QA
endif

SUBDIRS = BASE \
$(ALIROOT_DEP) \
Expand Down
5 changes: 0 additions & 5 deletions HLT/TPCLib/tracking-ca/AliTPCtrackerCA.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,7 @@ int AliTPCtrackerCA::LoadClusters ( TTree * fromTree )
// load mc tracks
while ( fDoHLTPerformance ) {
if ( !gAlice ) break;
#ifndef HAVE_NOT_ALIRUNLOADER30859
AliRunLoader *rl = AliRunLoader::Instance();//gAlice->GetRunLoader();
#else
// the old way before rev 30859
AliRunLoader *rl = AliRunLoader::GetRunLoader();
#endif
if ( !rl ) break;
rl->LoadKinematics();
AliStack *stack = rl->Stack();
Expand Down
Loading

0 comments on commit 2b2cd76

Please sign in to comment.