]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/AliHLTTPCEventStatistics.cxx
removing obsolete classes, concept of event and run summary was not put into production
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCEventStatistics.cxx
diff --git a/HLT/TPCLib/AliHLTTPCEventStatistics.cxx b/HLT/TPCLib/AliHLTTPCEventStatistics.cxx
deleted file mode 100644 (file)
index 5f5c126..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-//-*- Mode: C++ -*-
-// $Id$
-/**************************************************************************
- * This file is property of and copyright by the ALICE HLT Project        * 
- * ALICE Experiment at CERN, All rights reserved.                         *
- *                                                                        *
- * Primary Authors: Jochen Thaeder <thaeder@kip.uni-heidelberg.de>        *
- *                  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   AliHLTTPCEventStatistics.cxx
-    @author Jochen Thaeder
-    @date   
-    @brief  TPC class for event statistics, derived from @see AliHLTEventStatistics
-*/
-
-// see header file for class documentation
-// or
-// refer to README to build package
-// or
-// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt   
-
-#if __GNUC__ >= 3
-using namespace std;
-#endif
-
-#include "AliHLTTPCEventStatistics.h"
-
-ClassImp(AliHLTTPCEventStatistics)
-    
-  AliHLTTPCEventStatistics::AliHLTTPCEventStatistics() :
-    fNTotalTracks(0),
-    fNTracksAboveClusterThreshold(0),
-    fNMaxTracksPerSector(0),
-    fNMinTracksPerSector(9999),
-    fNAvgTracksPerSector(0),
-    fClusterThreshold(0),
-    fNTotalCluster(0),
-    fNUsedCluster(0),
-    fAvgClusterPerTrack(0) {
-  // see header file for class documentation
-  // or
-  // refer to README to build package
-  // or
-  // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
-
-
-}
-
-AliHLTTPCEventStatistics::~AliHLTTPCEventStatistics() {
-  // see header file for class documentation
-}
-
-