From: richterm Date: Thu, 13 Dec 2007 20:53:02 +0000 (+0000) Subject: - abandon TPCLib backward compatibility check for AliRoot releases < v4-03 X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=e962f43899468ffa1ca718edfb8c14e331861d2b - abandon TPCLib backward compatibility check for AliRoot releases < v4-03 and get rid of compilation switches - minor fixes in doxygen documentation --- diff --git a/HLT/BASE/AliHLTCalibrationProcessor.h b/HLT/BASE/AliHLTCalibrationProcessor.h index f7e3211c88e..6a1fa60c414 100644 --- a/HLT/BASE/AliHLTCalibrationProcessor.h +++ b/HLT/BASE/AliHLTCalibrationProcessor.h @@ -60,8 +60,8 @@ class AliHLTCalibrationProcessor : public AliHLTProcessor { * @param pDetector 4 byte Detector identifier * @param pFileID name of the file to which the data shall be stored * @param pDDLList pointer to ReadoutList ( struct @ref AliHLTEventDDL) of - * participating DDLs. Have to be set with @ref EnableDLLBit(), - * or unset with @ref DisableDLLBit. + * participating DDLs. Have to be set or unset with @ref + * AliHLTComponent::EnableDDLBit() and @ref AliHLTComponent::DisableDDLBit(). * Will be filled automatically if not supplied by the component. * @return neg. error code if failed */ @@ -74,8 +74,8 @@ class AliHLTCalibrationProcessor : public AliHLTProcessor { * @param pDetector 4 byte Detector identifier * @param pFileID name of the file to which the data shall be stored * @param pDDLList pointer to ReadoutList ( struct @ref AliHLTEventDDL) of - * participating DDLs. Have to be set with @ref EnableDLLBit(), - * or unset with @ref DisableDLLBit. + * participating DDLs. Have to be set or unset with @ref + * AliHLTComponent::EnableDDLBit() and @ref AliHLTComponent::DisableDDLBit(). * Will be filled automatically if not supplied by the component. * @return neg. error code if failed */ diff --git a/HLT/BASE/AliHLTDataBuffer.h b/HLT/BASE/AliHLTDataBuffer.h index 7f291e096e3..e7823c4c1d6 100644 --- a/HLT/BASE/AliHLTDataBuffer.h +++ b/HLT/BASE/AliHLTDataBuffer.h @@ -97,8 +97,7 @@ class AliHLTDataBuffer : public TObject, public AliHLTLogging * would have been prepared if there was enough space in the array
* The method is used by the consumer component. * @param pConsumer the component which subscribes to the buffer - * @param arrayBlockDesc pointer to block descriptor to be filled - * @param iArraySize size of the block descriptor array + * @param blockDescList block descriptor vector to be filled * @return: number of matching data blocks, neg. error code if failed
* -EACCESS the consumer state can't be changed (activated) * -EBADF unresolved data segments
diff --git a/HLT/TPCLib/AliHLTTPCCalibPedestalComponent.cxx b/HLT/TPCLib/AliHLTTPCCalibPedestalComponent.cxx index 1a8ac031328..1fb82d220bd 100755 --- a/HLT/TPCLib/AliHLTTPCCalibPedestalComponent.cxx +++ b/HLT/TPCLib/AliHLTTPCCalibPedestalComponent.cxx @@ -169,12 +169,7 @@ Int_t AliHLTTPCCalibPedestalComponent::InitCalibration() { if (fRawReader) return EINPROGRESS; -#if defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) fRawReader = new AliRawReaderMemory(); -#else - HLTFatal("AliRawReader not available - check your build"); - return -ENODEV; -#endif return 0; } diff --git a/HLT/TPCLib/AliHLTTPCCalibPulserComponent.cxx b/HLT/TPCLib/AliHLTTPCCalibPulserComponent.cxx index 961216264b0..4d03c4594dc 100644 --- a/HLT/TPCLib/AliHLTTPCCalibPulserComponent.cxx +++ b/HLT/TPCLib/AliHLTTPCCalibPulserComponent.cxx @@ -172,12 +172,7 @@ Int_t AliHLTTPCCalibPulserComponent::InitCalibration() { if (fRawReader) return EINPROGRESS; -#if defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) fRawReader = new AliRawReaderMemory(); -#else - HLTFatal("AliRawReader not available - check your build"); - return -ENODEV; -#endif return 0; #else // HAVE_NOT_ALITPCCALIBPULSER diff --git a/HLT/TPCLib/AliHLTTPCClusterFinderComponent.cxx b/HLT/TPCLib/AliHLTTPCClusterFinderComponent.cxx index b23c9a03e07..f3a3e179e85 100644 --- a/HLT/TPCLib/AliHLTTPCClusterFinderComponent.cxx +++ b/HLT/TPCLib/AliHLTTPCClusterFinderComponent.cxx @@ -273,7 +273,6 @@ int AliHLTTPCClusterFinderComponent::DoInit( int argc, const char** argv ) if (fPackedSwitch) { if (rawreadermode == -2) { -#if defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) HLTDebug("using AliHLTTPCDigitReaderPacked"); fReader = new AliHLTTPCDigitReaderPacked(); if(oldRCUFormat==1){ @@ -286,10 +285,6 @@ int AliHLTTPCClusterFinderComponent::DoInit( int argc, const char** argv ) fReader->SetUnsorted(kTRUE); } fClusterFinder->SetReader(fReader); -#else // ! defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) - HLTFatal("DigitReaderPacked not available - check your build"); - return -ENODEV; -#endif // defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) } else { #if defined(HAVE_TPC_MAPPING) HLTDebug("using AliHLTTPCDigitReaderRaw mode %d", rawreadermode); diff --git a/HLT/TPCLib/AliHLTTPCDigitDumpComponent.cxx b/HLT/TPCLib/AliHLTTPCDigitDumpComponent.cxx index 070627f85f0..d4cfc72b69c 100644 --- a/HLT/TPCLib/AliHLTTPCDigitDumpComponent.cxx +++ b/HLT/TPCLib/AliHLTTPCDigitDumpComponent.cxx @@ -187,11 +187,7 @@ int AliHLTTPCDigitDumpComponent::DumpEvent( const AliHLTComponentEventData& evtD break; case kDigitReaderPacked: HLTInfo("create DigitReaderPacked"); -#if defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) pReader=new AliHLTTPCDigitReaderPacked; -#else // ! defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) - HLTFatal("DigitReaderPacked not available - check your build"); -#endif // defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) break; case kDigitReaderRaw: HLTInfo("create DigitReaderRaw"); @@ -203,7 +199,6 @@ int AliHLTTPCDigitDumpComponent::DumpEvent( const AliHLTComponentEventData& evtD iResult=-EFAULT; break; } - pReader->SetUnsorted(kTRUE); iResult=pReader->InitBlock(pDesc->fPtr,pDesc->fSize,firstRow,lastRow,part,slice); int iPrintedRow=-1; diff --git a/HLT/TPCLib/AliHLTTPCDigitDumpComponent.h b/HLT/TPCLib/AliHLTTPCDigitDumpComponent.h index b651dd2bc6d..7f25fe2ed9c 100644 --- a/HLT/TPCLib/AliHLTTPCDigitDumpComponent.h +++ b/HLT/TPCLib/AliHLTTPCDigitDumpComponent.h @@ -37,7 +37,7 @@ * Optional arguments:
* * \li -rawreadermode mode
- * data mode of the AliHLTTPCDigitReaderRaw + * data mode of the AliHLTTPCDigitReaderRaw * \li -digitreader reader
* type of the digit reader: unpacked, packed, raw * diff --git a/HLT/TPCLib/AliHLTTPCDigitReaderPacked.cxx b/HLT/TPCLib/AliHLTTPCDigitReaderPacked.cxx index 67cbc984a70..ae118cc57bb 100644 --- a/HLT/TPCLib/AliHLTTPCDigitReaderPacked.cxx +++ b/HLT/TPCLib/AliHLTTPCDigitReaderPacked.cxx @@ -1,22 +1,22 @@ // $Id$ -/************************************************************************** - * This file is property of and copyright by the ALICE HLT Project * - * ALICE Experiment at CERN, All rights reserved. * - * * - * Primary Authors: Matthias Richter * - * Timm Steinbeck * - * Jochen Thaeder * - * for The ALICE HLT Project. * - * * - * Permission to use, copy, modify and distribute this software and its * - * documentation strictly for non-commercial purposes is hereby granted * - * without fee, provided that the above copyright notice appears in all * - * copies and that both the copyright notice and this permission notice * - * appear in the supporting documentation. The authors make no claims * - * about the suitability of this software for any purpose. It is * - * provided "as is" without express or implied warranty. * - **************************************************************************/ +//************************************************************************* +// This file is property of and copyright by the ALICE HLT Project * +// ALICE Experiment at CERN, All rights reserved. * +// * +// Primary Authors: Matthias Richter * +// Timm Steinbeck * +// Jochen Thaeder * +// for The ALICE HLT Project. * +// * +// Permission to use, copy, modify and distribute this software and its * +// documentation strictly for non-commercial purposes is hereby granted * +// without fee, provided that the above copyright notice appears in all * +// copies and that both the copyright notice and this permission notice * +// appear in the supporting documentation. The authors make no claims * +// about the suitability of this software for any purpose. It is * +// provided "as is" without express or implied warranty. * +//*************************************************************************/ /** @file AliHLTTPCDigitReaderPacked.cxx @author Timm Steinbeck, Jochen Thaeder, Matthias Richter, Kenneth Aamodt @@ -41,7 +41,6 @@ using namespace std; ClassImp(AliHLTTPCDigitReaderPacked) -#if defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) AliHLTTPCDigitReaderPacked::AliHLTTPCDigitReaderPacked() : //#if ENABLE_PAD_SORTING @@ -100,7 +99,8 @@ AliHLTTPCDigitReaderPacked::~AliHLTTPCDigitReaderPacked(){ //#endif // ENABLE_PAD_SORTING } -Int_t AliHLTTPCDigitReaderPacked::InitBlock(void* ptr,unsigned long size, Int_t patch, Int_t slice){ +Int_t AliHLTTPCDigitReaderPacked::InitBlock(void* ptr,ULong_t size, Int_t patch, Int_t slice) +{ fRawMemoryReader->SetMemory( reinterpret_cast( ptr ), size ); @@ -269,4 +269,3 @@ Int_t AliHLTTPCDigitReaderPacked::GetTime(){ return fTPCRawStream->GetTime(); } } -#endif //defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) diff --git a/HLT/TPCLib/AliHLTTPCDigitReaderPacked.h b/HLT/TPCLib/AliHLTTPCDigitReaderPacked.h index d659b7ca7ab..4b9e846bd8c 100644 --- a/HLT/TPCLib/AliHLTTPCDigitReaderPacked.h +++ b/HLT/TPCLib/AliHLTTPCDigitReaderPacked.h @@ -4,8 +4,9 @@ #ifndef ALIHLTTPCDIGITREADERPACKED_H #define ALIHLTTPCDIGITREADERPACKED_H -/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * - * See cxx source for full Copyright notice */ +//* This file is property of and copyright by the ALICE HLT Project * +//* ALICE Experiment at CERN, All rights reserved. * +//* See cxx source for full Copyright notice * /** @file AliHLTTPCDigitReaderPacked.h @author Timm Steinbeck, Jochen Thaeder, Matthias Richter, Kenneth Aamodt @@ -17,10 +18,7 @@ #include "AliHLTTPCDigitReader.h" -#if defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) - class AliRawReaderMemory; - class AliTPCRawStream; /** @@ -28,7 +26,7 @@ class AliTPCRawStream; * A digit reader implementation for simulated, packed TPC 'raw' data. * Includes reordering of the pads by default, sorting (and time and * memory consuming intermediate storing of the data) can be disabled - * by @ref SetUnsorted(kTRUE). + * by @ref SetUnsorted() with argument kTRUE. * @ingroup alihlt_tpc */ class AliHLTTPCDigitReaderPacked : public AliHLTTPCDigitReader{ @@ -41,7 +39,7 @@ public: /** * Init the reader with a data block. * The function fetches the first and last row for the readout partition - * from @ref AliHLTTransform. + * from @ref AliHLTTPCTransform. * @param ptr pointer to data buffer * @param size size of the data buffer * @param patch patch (readout partition) number within the slice @@ -91,17 +89,4 @@ private: }; -#else -// add a dummy class to make CINT happy -class AliHLTTPCDigitReaderPacked : public AliHLTLogging{ -public: - AliHLTTPCDigitReaderPacked() - { - HLTFatal("AliHLTTPCDigitReaderPacked not build"); - } - - ClassDef(AliHLTTPCDigitReaderPacked, 0) -}; -#endif //defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) - #endif diff --git a/HLT/TPCLib/AliHLTTPCDigitReaderUnpacked.h b/HLT/TPCLib/AliHLTTPCDigitReaderUnpacked.h index cb73eb0f17b..f71824131d1 100644 --- a/HLT/TPCLib/AliHLTTPCDigitReaderUnpacked.h +++ b/HLT/TPCLib/AliHLTTPCDigitReaderUnpacked.h @@ -19,7 +19,7 @@ class AliHLTTPCDigitRowData; /** - * @class AliHLTTPCDigitReaderPacked + * @class AliHLTTPCDigitReaderUnpacked * A digit reader implementation for unpacked TPC data. * @ingroup alihlt_tpc */ diff --git a/HLT/TPCLib/AliHLTTPCEsdWriterComponent.h b/HLT/TPCLib/AliHLTTPCEsdWriterComponent.h index d7f4f9751a8..540036d7470 100644 --- a/HLT/TPCLib/AliHLTTPCEsdWriterComponent.h +++ b/HLT/TPCLib/AliHLTTPCEsdWriterComponent.h @@ -216,8 +216,8 @@ class AliHLTTPCEsdWriterComponent : public AliHLTLogging * @param pESD ESD to be filled * @param blocks data block descriptor array * @param nBlocks size of the array - * @param pMinSize [OUT] receives the minimum slice no - * @param pMaxSize [OUT] receives the maximum slice no + * @param pMinSlice [OUT] receives the minimum slice no + * @param pMaxSlice [OUT] receives the maximum slice no * @return neg. error code if failed */ int ProcessBlocks(TTree* pTree, AliESDEvent* pESD, const AliHLTComponentBlockData* blocks, diff --git a/HLT/TPCLib/OnlineDisplay/AliHLTTPCDisplay.cxx b/HLT/TPCLib/OnlineDisplay/AliHLTTPCDisplay.cxx index 6313a63104d..ab169c66372 100644 --- a/HLT/TPCLib/OnlineDisplay/AliHLTTPCDisplay.cxx +++ b/HLT/TPCLib/OnlineDisplay/AliHLTTPCDisplay.cxx @@ -1,17 +1,28 @@ // @(#) $Id$ // Original: AliHLTDisplay.cxx,v 1.26 2005/06/14 10:55:21 cvetan -/** -
-//_____________________________________________________________
-// AliHLTTPCDisplay
-//
-// Display class for the HLT TPC events.
-
+//************************************************************************* +// This file is property of and copyright by the ALICE HLT Project * +// ALICE Experiment at CERN, All rights reserved. * +// * +// Primary Authors: Jochen Thaeder * +// Anders Vestbo * +// for The ALICE HLT Project. * +// * +// Permission to use, copy, modify and distribute this software and its * +// documentation strictly for non-commercial purposes is hereby granted * +// without fee, provided that the above copyright notice appears in all * +// copies and that both the copyright notice and this permission notice * +// appear in the supporting documentation. The authors make no claims * +// about the suitability of this software for any purpose. It is * +// provided "as is" without express or implied warranty. * +//*************************************************************************/ + +/** @file AliHLTTPCDisplay.cxx + @author Jochen Thaeder, Anders Vestbo + @date + @brief Display class for the HLT TPC events. */ -// Author: Jochen Thaeder -// Anders Vestbo -//*-- Copyright © ALICE HLT Group #define TRACKHELIX 0 #define TRACKPOLYMARKER 0 @@ -391,7 +402,6 @@ void AliHLTTPCDisplay::SetupHist(){ // #################################################################################################### void AliHLTTPCDisplay::FillPadRow(Int_t patch, ULong_t dataBlock, ULong_t dataLen){ -#if defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) AliHLTTPCDigitReader* digitReader = new AliHLTTPCDigitReaderPacked(); bool readValue = true; Int_t rowOffset = 0; @@ -537,9 +547,6 @@ void AliHLTTPCDisplay::FillPadRow(Int_t patch, ULong_t dataBlock, ULong_t dataLe fHistrawcl->Fill(xyz[1],xyz[2]); } } -#else //! if defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) - HLTFatal("DigitReaderPacked not available - check your build"); -#endif //defined(HAVE_ALIRAWDATA) && defined(HAVE_ALITPCRAWSTREAM_H) } // ############################################################################# diff --git a/HLT/TPCLib/OnlineDisplay/AliHLTTPCDisplay.h b/HLT/TPCLib/OnlineDisplay/AliHLTTPCDisplay.h index ec0189c8492..66da6053eef 100644 --- a/HLT/TPCLib/OnlineDisplay/AliHLTTPCDisplay.h +++ b/HLT/TPCLib/OnlineDisplay/AliHLTTPCDisplay.h @@ -2,21 +2,19 @@ // @(#) $Id$ // Original: AliHLTDisplay.h,v 1.14 2004/06/30 08:30:14 loizides +//* This file is property of and copyright by the ALICE HLT Project * +//* ALICE Experiment at CERN, All rights reserved. * +//* See cxx source for full Copyright notice * + +/** @file AliHLTTPCDisplay.h + @author Jochen Thaeder, Anders Vestbo + @date + @brief Display class for the HLT TPC events. +*/ + #ifndef ALIHLTTPCDISPLAY_H #define ALIHLTTPCDISPLAY_H -/** \class AliHLTTPCDisplay -
-//_____________________________________________________________
-// AliHLTTPCDisplay
-//
-// Display class for the HLT TPC events.
-
-*/ -// Author: Jochen Thaeder -// Anders Vestbo -//*-- Copyright © ALICE HLT Group - #include #include #include diff --git a/HLT/TPCLib/tracking-ca/AliHLTTPCCATrackPar.cxx b/HLT/TPCLib/tracking-ca/AliHLTTPCCATrackPar.cxx index 8f5c621e3f3..216d42d1b7c 100644 --- a/HLT/TPCLib/tracking-ca/AliHLTTPCCATrackPar.cxx +++ b/HLT/TPCLib/tracking-ca/AliHLTTPCCATrackPar.cxx @@ -208,7 +208,7 @@ void AliHLTTPCCATrackPar::GetConnectionMatrix( Double_t B, const Double_t p[3], } -void AliHLTTPCCATrackPar::Filter( const Double_t m[], const Double_t V[], const Double_t V1[6] ) +void AliHLTTPCCATrackPar::Filter( const Double_t m[3], const Double_t V[6], const Double_t V1[6] ) { //* ! Double_t diff --git a/HLT/configure.ac b/HLT/configure.ac index 8a1786f5a2e..48bb81b1806 100644 --- a/HLT/configure.ac +++ b/HLT/configure.ac @@ -178,7 +178,6 @@ if test ! "x$have_aliroot" = "xno" ; then CHECKLIB=RAWDatarec AC_CHECK_LIB([$CHECKLIB],[_init], [ALIROOT_LIBS="$ALIROOT_LIBS -l$CHECKLIB" - AC_DEFINE(HAVE_ALIRAWDATA) have_alirawdata=$CHECKLIB])], [# second pass with -RAWData CHECKLIB="-lRAWData" @@ -191,8 +190,7 @@ if test ! "x$have_aliroot" = "xno" ; then AliRawReaderFile freader; AliRawReaderDate dreader(NULL,0); AliRawReaderRoot rreader(NULL,0);])], - [AC_DEFINE(HAVE_ALIRAWDATA) - ALIROOT_LIBS="$ALIROOT_LIBS $CHECKLIB" + [ALIROOT_LIBS="$ALIROOT_LIBS $CHECKLIB" have_alirawdata=$CHECKLIB], [have_alirawdata=no]) ]) dnl AC_CHECK_LIB RAWDatabase @@ -245,7 +243,7 @@ if test ! "x$have_aliroot" = "xno" ; then # the HLTTPCLib needs to link agains TPCbase and TPCrec # TPC library for AliTPCParam and AliSimDigits used in # AliHLTTPCFileHandler.h and AliHLTTPCDisplay.cxx - # fram May 07 TPCbase depends on libGui.so + # from May 07 TPCbase depends on libGui.so CPPFLAGS="$save_CPPFLAGS $ALIROOT_CPPFLAGS -I${ALICE_ROOT}/TPC" have_alitpc=yes AC_MSG_CHECKING(for required classes in TPC libraries) @@ -292,15 +290,6 @@ if test ! "x$have_aliroot" = "xno" ; then AC_MSG_CHECKING([for TPC mapping layout]) AC_MSG_RESULT([$have_tpc_mapping]) - if test ! "x$have_alirawdata" = "xno" ; then - # check for header files needed by the TPCLib/AliHLTTPCDigitReaderPacket - # the header file has been moved to the TPC module - CPPFLAGS="$save_CPPFLAGS $ALIROOT_CPPFLAGS -I${ALICE_ROOT}/TPC" - # AliRawReaderMemory.h AliRawReaderFile.h already checked - #AC_CHECK_HEADERS([AliRawReaderMemory.h AliRawReaderFile.h AliTPCRawStream.h]) - AC_CHECK_HEADERS([AliTPCRawStream.h]) - fi - dnl dnl Check for the interface of AliExternalTrackParam which has been changed dnl in revision 1.17 of AliExternalTrackParam.h (AliRoot version v4-05-04 @@ -508,7 +497,8 @@ dnl ------------------------------------------------------------------ AH_TEMPLATE([HLT_TPC],[hlt tpc library]) CHECK_HLTMODULE([tpc], - [], [], + [AliTPCRawStream.h], + [$ALIROOT_CPPFLAGS -I$ALICE_ROOT/TPC], [], [-L$ROOTLIBDIR], [$ROOTLIBS $ADD_ROOTLIBS], [], [-L$ROOTLIBDIR $ALIROOT_LDFLAGS], [$ROOTLIBS $ADD_ROOTLIBS $ALIROOT_LIBS]) diff --git a/HLT/rec/AliHLTPreprocessor.cxx b/HLT/rec/AliHLTPreprocessor.cxx index 85011671cc2..5fdc08f7b7b 100644 --- a/HLT/rec/AliHLTPreprocessor.cxx +++ b/HLT/rec/AliHLTPreprocessor.cxx @@ -46,16 +46,6 @@ ClassImp(AliHLTPreprocessor) -const Int_t AliHLTPreprocessor::fgkHuffmanTablesNum = 6; - -const char* AliHLTPreprocessor::fgkHLTPreproc = "HLT"; - -const char* AliHLTPreprocessor::fgkHuffmanFileBase = "huffmanData_"; - -const char* AliHLTPreprocessor::fgkHuffmanFileDetector = "TPC_"; // at the moment only one - -const char* AliHLTPreprocessor::fgkTempHistoFileName = "HLTTemperatureHistograms.root"; - AliHLTPreprocessor::AliHLTPreprocessor(AliShuttleInterface* shuttle) : AliPreprocessor(fgkHLTPreproc, shuttle), @@ -70,6 +60,15 @@ AliHLTPreprocessor::AliHLTPreprocessor(AliShuttleInterface* shuttle) // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt } +const Int_t AliHLTPreprocessor::fgkHuffmanTablesNum = 6; + +const char* AliHLTPreprocessor::fgkHLTPreproc = "HLT"; + +const char* AliHLTPreprocessor::fgkHuffmanFileBase = "huffmanData_"; + +const char* AliHLTPreprocessor::fgkHuffmanFileDetector = "TPC_"; // at the moment only one + +const char* AliHLTPreprocessor::fgkTempHistoFileName = "HLTTemperatureHistograms.root"; AliHLTPreprocessor::~AliHLTPreprocessor() { // see header file for function documentation