]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoVertexAnalysis.h
Split: removed dirs now in AliPhysics
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoVertexAnalysis.h
diff --git a/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoVertexAnalysis.h b/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoVertexAnalysis.h
deleted file mode 100644 (file)
index 27e1b14..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//                                                                        //
-// AliFemtoVertexAnalysis - Femtoscopic analysis which mixes events       //
-// with respect to the z position of the primary vertex                   //
-//                                                                        //
-////////////////////////////////////////////////////////////////////////////
-
-/***************************************************************************
- * Collection and analysis for vertex dependent event mixing
- * Frank Laue, Ohio State, 2000
- *
- **************************************************************************/
-
-#ifndef ALIFEMTOVERTEXANALYSIS_H
-#define ALIFEMTOVERTEXANALYSIS_H
-
-#include "AliFemtoSimpleAnalysis.h"        // base analysis class
-
-class AliFemtoVertexAnalysis : public AliFemtoSimpleAnalysis {
-
-public:
-
-  AliFemtoVertexAnalysis(unsigned int bins=10, double min=-100., double max=+100.);
-  AliFemtoVertexAnalysis(const AliFemtoVertexAnalysis& OriginalAnalysis);  // copy constructor
-  AliFemtoVertexAnalysis& operator=(const AliFemtoVertexAnalysis& OriginalAnalysis);  
-  virtual void ProcessEvent(const AliFemtoEvent* ProcessThisEvent);
-  virtual ~AliFemtoVertexAnalysis();
-  virtual AliFemtoString Report();       //! returns reports of all cuts applied and correlation functions being done
-  virtual unsigned int Overflow() { return fOverFlow;}
-  virtual unsigned int Underflow() { return fUnderFlow;}
-protected:
-  double fVertexZ[2];            /* min/max z-vertex position allowed to be processed */
-  unsigned int fVertexBins;      /* number of mixing bins in z-vertex in EventMixing Buffer */
-  unsigned int fOverFlow;        /* number of events encountered which had too large z-vertex */
-  unsigned int fUnderFlow;       /* number of events encountered which had too small z-vertex */
-  
-#ifdef __ROOT__
-  ClassDef(AliFemtoVertexAnalysis, 0)
-#endif
-    
-};
-
-#endif