]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removal of obsolete files
authorphille <phille@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 11 Jan 2007 16:46:57 +0000 (16:46 +0000)
committerphille <phille@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 11 Jan 2007 16:46:57 +0000 (16:46 +0000)
HLT/PHOS/AliHLTPHOSPeakFinder.h~ [deleted file]
HLT/PHOS/AliHLTPHOSRawAnalyzer.h~ [deleted file]

diff --git a/HLT/PHOS/AliHLTPHOSPeakFinder.h~ b/HLT/PHOS/AliHLTPHOSPeakFinder.h~
deleted file mode 100644 (file)
index 4ab4335..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef ALIHLTPHOSPEAKFINDER_H
-#define ALIHLTPHOSPEAKFINDER_H
-#include <Rtypes.h>
-#include "TObject.h"
-#include "AliHLTPHOSRawAnalyzer.h"
-
-
-
-/* Copyright(c) 2006, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                          */
-
-class AliHLTPHOSPeakFinder : public  TObject, public AliHLTPHOSRawAnalyzer
-//class AliHLTPHOSPeakFinder : public  TObject
-{
- public:
-  AliHLTPHOSPeakFinder();
-  AliHLTPHOSPeakFinder(double *dataPtr, double fs);
-  AliHLTPHOSPeakFinder(const AliHLTPHOSPeakFinder & );
-  AliHLTPHOSPeakFinder & operator = (const AliHLTPHOSPeakFinder)
-    {
-      return *this; 
-    }
-  
-  virtual ~AliHLTPHOSPeakFinder();
-  void FitPeakFinder(int start = 0, int lenght = 100, double *tVector = 0, double *aVector = 0);
-  int FindStartIndex(double treshold);
-  //  virtual void Analyze(int start = 0, int lenght = 100, double *tVector = 0, double *aVector = 0) const;
-  virtual void Analyze() const;
- private:
-  void MakeInitialGuess();
-  void MakeInitialGuess(int treshold);
-  double     fDTofGuess;       /**<Initial guess for t0*/
-  double     fDAmplGuess;      /**<Initial guess for amplitude*/
-  double   **kfMCovarPtrPtr;   /**<Covariance matrix of the measurements*/
-  double   **fPCovarPtrPtr;    /**<Covariance matrix of the estimated parameters*/
-  ClassDef(AliHLTPHOSPeakFinder, 2) 
-  
-    };
-
-#endif
diff --git a/HLT/PHOS/AliHLTPHOSRawAnalyzer.h~ b/HLT/PHOS/AliHLTPHOSRawAnalyzer.h~
deleted file mode 100644 (file)
index 4a3c078..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef ALIHLTPHOSRAWANALYZER_H
-#define ALIHLTPHOSRAWANALYZER_H
-
-
-class AliHLTPHOSRawAnalyzer
-{
- public:
-  AliHLTPHOSRawAnalyzer();
-  ~AliHLTPHOSRawAnalyzer();
-  AliHLTPHOSRawAnalyzer(const AliHLTPHOSRawAnalyzer & );
-  AliHLTPHOSRawAnalyzer & operator = (const AliHLTPHOSRawAnalyzer);
-  void BaselineCorrection(double *dataPtr, int N);
-  void BaselineCorrection(double *dataPtr, double baselineValue);  
-  float GetTiming();
-  float GetEnergy();
-  void SetData(double *data);
-  virtual void Analyze() const = 0;
-
- protected:
-  double    *fFloatDataPtr;    /**<Float representation of data that should be fitted */
-  double     fSampleFrequency; /**<The ADC sample frequency in MHz used under data taking */
-  double     fTau;            /**<The risetime in micro seconds*/               
-  double     fDTof;            /**<Time of flight in entities of sample intervals */
-  double     fDAmpl;           /**<Amplitude in entities of ADC levels*/
-  int        n;
-
-};
-
-
-#endif