]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoAnalysisCollection.h
Split: removed dirs now in AliPhysics
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoAnalysisCollection.h
diff --git a/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoAnalysisCollection.h b/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoAnalysisCollection.h
deleted file mode 100644 (file)
index 2ef52b4..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/***************************************************************************
- *
- * $Id$
- *
- * Author: Mike Lisa, Ohio State, lisa@mps.ohio-state.edu
- ***************************************************************************
- *
- * Description: part of STAR HBT Framework: AliFemtoMaker package
- *  The AnalysisCollection is pointed to by the Manager, and holds pointers
- *  to all Analysis objects currently active
- *
- ***************************************************************************
- *
- * $Log$
- * Revision 1.1  2007/05/16 10:22:11  akisiel
- * Making the directory structure of AliFemto flat. All files go into one common directory
- *
- * Revision 1.1.1.1  2007/04/25 15:38:41  panos
- * Importing the HBT code dir
- *
- * Revision 1.1.1.1  2007/03/07 10:14:49  mchojnacki
- * First version on CVS
- *
- * Revision 1.3  2000/03/17 17:23:05  laue
- * Roberts new three particle correlations implemented.
- *
- * Revision 1.2  2000/02/01 00:33:31  laue
- * namespaces changed to run on the new Solaris Compiler CC5
- * since we can use member templates in franks1Histo.h we are doing it
- *
- * Revision 1.1.1.1  1999/06/29 16:02:57  lisa
- * Installation of AliFemtoMaker
- *
- **************************************************************************/
-
-#ifndef AliFemtoAnalysisCollection_hh
-#define AliFemtoAnalysisCollection_hh
-
-
-#include <list>
-#if !defined(ST_NO_NAMESPACES)
-using std::list;
-#endif
-class AliFemtoAnalysis;
-
-#ifdef ST_NO_TEMPLATE_DEF_ARGS
-typedef list<AliFemtoAnalysis*, allocator<AliFemtoAnalysis*> >            AliFemtoAnalysisCollection;
-typedef list<AliFemtoAnalysis*, allocator<AliFemtoAnalysis*> >::iterator  AliFemtoSimpleAnalysisIterator;
-#else
-typedef list<AliFemtoAnalysis*>            AliFemtoAnalysisCollection;
-typedef list<AliFemtoAnalysis*>::iterator  AliFemtoSimpleAnalysisIterator;
-#endif
-
-#endif