ROOT logo
/**************************************************************************
 * Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
 *                                                                        *
 * Author: The ALICE Off-line Project.                                    *
 * Contributors are mentioned in the code where appropriate.              *
 *                                                                        *
 * 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.                  *
 **************************************************************************/

/* $Id$ */

//-------------------------------------------------------------------------
//     AOD PMD cluster class
//     Author: Markus Oldenburg, CERN
//-------------------------------------------------------------------------

#include "AliAODPmdCluster.h"

ClassImp(AliAODPmdCluster)

//______________________________________________________________________________
AliAODPmdCluster::AliAODPmdCluster() : 
  AliAODCluster(),
  fAssocCluster(NULL)
{
  // default constructor
}

//______________________________________________________________________________
AliAODPmdCluster::AliAODPmdCluster(Int_t id,
				   Int_t nLabel,
				   Int_t *label, 
				   Double_t energy,
				   Double_t x[3],
				   Double_t pid[13],
				   Char_t ttype,
				   UInt_t /*selectInfo*/,
				   AliAODPmdCluster* assoc) :
  AliAODCluster(id, nLabel, label, energy, x, pid, ttype),
  fAssocCluster(assoc)
{
  // constructor
}

//______________________________________________________________________________
AliAODPmdCluster::AliAODPmdCluster(Int_t id,
				   Int_t nLabel,
				   Int_t *label, 
				   Float_t energy,
				   Float_t x[3],
				   Float_t pid[13],
				   Char_t ttype,
				   UInt_t /*selectInfo*/,
				   AliAODPmdCluster* assoc) :
  AliAODCluster(id, nLabel, label, energy, x, pid, ttype),
  fAssocCluster(assoc)
{
  // constructor
}


//______________________________________________________________________________
AliAODPmdCluster::~AliAODPmdCluster() 
{
  // destructor
}


//______________________________________________________________________________
AliAODPmdCluster::AliAODPmdCluster(const AliAODPmdCluster& clus) :
  AliAODCluster(clus),
  fAssocCluster(clus.fAssocCluster)
{
  // Copy constructor
}

//______________________________________________________________________________
AliAODPmdCluster& AliAODPmdCluster::operator=(const AliAODPmdCluster& clus)
{
  // Assignment operator
  if(this!=&clus) {

    AliAODCluster::operator=(clus);
    
    fAssocCluster = clus.fAssocCluster;
  }

  return *this;
}
 AliAODPmdCluster.cxx:1
 AliAODPmdCluster.cxx:2
 AliAODPmdCluster.cxx:3
 AliAODPmdCluster.cxx:4
 AliAODPmdCluster.cxx:5
 AliAODPmdCluster.cxx:6
 AliAODPmdCluster.cxx:7
 AliAODPmdCluster.cxx:8
 AliAODPmdCluster.cxx:9
 AliAODPmdCluster.cxx:10
 AliAODPmdCluster.cxx:11
 AliAODPmdCluster.cxx:12
 AliAODPmdCluster.cxx:13
 AliAODPmdCluster.cxx:14
 AliAODPmdCluster.cxx:15
 AliAODPmdCluster.cxx:16
 AliAODPmdCluster.cxx:17
 AliAODPmdCluster.cxx:18
 AliAODPmdCluster.cxx:19
 AliAODPmdCluster.cxx:20
 AliAODPmdCluster.cxx:21
 AliAODPmdCluster.cxx:22
 AliAODPmdCluster.cxx:23
 AliAODPmdCluster.cxx:24
 AliAODPmdCluster.cxx:25
 AliAODPmdCluster.cxx:26
 AliAODPmdCluster.cxx:27
 AliAODPmdCluster.cxx:28
 AliAODPmdCluster.cxx:29
 AliAODPmdCluster.cxx:30
 AliAODPmdCluster.cxx:31
 AliAODPmdCluster.cxx:32
 AliAODPmdCluster.cxx:33
 AliAODPmdCluster.cxx:34
 AliAODPmdCluster.cxx:35
 AliAODPmdCluster.cxx:36
 AliAODPmdCluster.cxx:37
 AliAODPmdCluster.cxx:38
 AliAODPmdCluster.cxx:39
 AliAODPmdCluster.cxx:40
 AliAODPmdCluster.cxx:41
 AliAODPmdCluster.cxx:42
 AliAODPmdCluster.cxx:43
 AliAODPmdCluster.cxx:44
 AliAODPmdCluster.cxx:45
 AliAODPmdCluster.cxx:46
 AliAODPmdCluster.cxx:47
 AliAODPmdCluster.cxx:48
 AliAODPmdCluster.cxx:49
 AliAODPmdCluster.cxx:50
 AliAODPmdCluster.cxx:51
 AliAODPmdCluster.cxx:52
 AliAODPmdCluster.cxx:53
 AliAODPmdCluster.cxx:54
 AliAODPmdCluster.cxx:55
 AliAODPmdCluster.cxx:56
 AliAODPmdCluster.cxx:57
 AliAODPmdCluster.cxx:58
 AliAODPmdCluster.cxx:59
 AliAODPmdCluster.cxx:60
 AliAODPmdCluster.cxx:61
 AliAODPmdCluster.cxx:62
 AliAODPmdCluster.cxx:63
 AliAODPmdCluster.cxx:64
 AliAODPmdCluster.cxx:65
 AliAODPmdCluster.cxx:66
 AliAODPmdCluster.cxx:67
 AliAODPmdCluster.cxx:68
 AliAODPmdCluster.cxx:69
 AliAODPmdCluster.cxx:70
 AliAODPmdCluster.cxx:71
 AliAODPmdCluster.cxx:72
 AliAODPmdCluster.cxx:73
 AliAODPmdCluster.cxx:74
 AliAODPmdCluster.cxx:75
 AliAODPmdCluster.cxx:76
 AliAODPmdCluster.cxx:77
 AliAODPmdCluster.cxx:78
 AliAODPmdCluster.cxx:79
 AliAODPmdCluster.cxx:80
 AliAODPmdCluster.cxx:81
 AliAODPmdCluster.cxx:82
 AliAODPmdCluster.cxx:83
 AliAODPmdCluster.cxx:84
 AliAODPmdCluster.cxx:85
 AliAODPmdCluster.cxx:86
 AliAODPmdCluster.cxx:87
 AliAODPmdCluster.cxx:88
 AliAODPmdCluster.cxx:89
 AliAODPmdCluster.cxx:90
 AliAODPmdCluster.cxx:91
 AliAODPmdCluster.cxx:92
 AliAODPmdCluster.cxx:93
 AliAODPmdCluster.cxx:94
 AliAODPmdCluster.cxx:95