StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
SVTV1P0_CPP_SR.cxx
1 /***************************************************************************
2  *
3  * $Id: SVTV1P0_CPP_SR.cxx,v 1.3 2007/12/24 06:04:27 fine Exp $
4  *
5  * Author: M.J. LeVine and Marcelo Munhoz(for the SVT group)
6  *
7  ***************************************************************************
8  *
9  * Description: SVT reader for raw cluster pointer banks (SVTCPPR)
10  *
11  ***************************************************************************
12  *
13  * $Log: SVTV1P0_CPP_SR.cxx,v $
14  * Revision 1.3 2007/12/24 06:04:27 fine
15  * introduce OLDEVP namespace to allow ole and new EVP library concurrently
16  *
17  * Revision 1.2 2003/09/02 17:55:33 perev
18  * gcc 3.2 updates + WarnOff
19  *
20  * Revision 1.1 2000/06/06 18:08:31 jml
21  * Initial version of SVT Readers (author: marcello munholz, helen caines)
22  *
23  *
24  **************************************************************************/
25 
26 #include <Stiostream.h>
27 
28 #include "StDaqLib/GENERIC/EventReader.hh"
29 #include "SVTV1P0.hh"
30 
31 using namespace OLDEVP;
32 SVTV1P0_CPP_SR::SVTV1P0_CPP_SR(int w, SVTV1P0_Reader *det)
33 {}
34 
35 SVTV1P0_CPP_SR::SVTV1P0_CPP_SR(int b, int l, int w, SVTV1P0_Reader *det)
36 {}
37 
38 int SVTV1P0_CPP_SR::initialize()
39 {
40  return TRUE;
41 }
42 
43 int SVTV1P0_CPP_SR::getAsicParams(ASIC_params *params)
44 {
45  return FALSE;
46 }
47 
48 SVTV1P0_CPP_SR::~SVTV1P0_CPP_SR()
49 {
50  // cout << "Deleting SVTV1P0_CPP_SR" << endl;
51 }
52 
53 int SVTV1P0_CPP_SR::getClusters(int Hybrid, int Anode,
54  int *nClusters, struct ASIC_Cluster **clusters)
55 {
56  return 0;
57 }
58 
59 
60 int SVTV1P0_CPP_SR::MemUsed()
61 {
62  return 0;
63 }
64 
65 
66