StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StNNCluster.cxx
1 /************************************************************
2  *
3  * $Id: StNNCluster.cxx,v 1.1 2003/05/29 13:20:12 subhasis Exp $
4  *
5  * Author: Subhasis Chattopadhyay
6  ************************************************************
7  *
8  * Description: StNNCluster is class for PMD NN cluster.
9  *
10  ************************************************************
11  *
12  * $Log: StNNCluster.cxx,v $
13  * Revision 1.1 2003/05/29 13:20:12 subhasis
14  * NN Input cluster
15  *
16  ************************************************************/
17 #include "StNNCluster.h"
18 #include "StEventTypes.h"
19 
20 
21 ClassImp(StNNCluster)
22 
23 //_____________________________________________________________________________
24 
26 {
27 mpmdcluster=NULL;
28 mcpvcluster=NULL;
29 }
30 //________________________________________________
31 
32 StNNCluster::StNNCluster(StPhmdCluster* pmd, StPhmdCluster* cpv) : StObject()
33 {
34 mpmdcluster=pmd;
35 mcpvcluster=cpv;
36 }
37