ROOT logo
/**************************************************************************
 * Copyright(c) 1998-1999, 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:  $ */

//_________________________________________________________________________//
//_________________________________________________________________________//

#include "AliVTOFcluster.h"

AliVTOFcluster::AliVTOFcluster(const AliVTOFcluster & source) :
  TObject(source),
  fEvent(NULL)
{
  // 
  // copy ctor for AliVTOFcluster object
  //
}

AliVTOFcluster & AliVTOFcluster::operator=(const AliVTOFcluster & source)
{
  // 
  // copy ctor for AliVTOFcluster object
  //
  if (this != &source) {
    TObject::operator=(source);
    fEvent = source.fEvent;
  }
  return *this;
}

ClassImp(AliVTOFcluster)
 AliVTOFcluster.cxx:1
 AliVTOFcluster.cxx:2
 AliVTOFcluster.cxx:3
 AliVTOFcluster.cxx:4
 AliVTOFcluster.cxx:5
 AliVTOFcluster.cxx:6
 AliVTOFcluster.cxx:7
 AliVTOFcluster.cxx:8
 AliVTOFcluster.cxx:9
 AliVTOFcluster.cxx:10
 AliVTOFcluster.cxx:11
 AliVTOFcluster.cxx:12
 AliVTOFcluster.cxx:13
 AliVTOFcluster.cxx:14
 AliVTOFcluster.cxx:15
 AliVTOFcluster.cxx:16
 AliVTOFcluster.cxx:17
 AliVTOFcluster.cxx:18
 AliVTOFcluster.cxx:19
 AliVTOFcluster.cxx:20
 AliVTOFcluster.cxx:21
 AliVTOFcluster.cxx:22
 AliVTOFcluster.cxx:23
 AliVTOFcluster.cxx:24
 AliVTOFcluster.cxx:25
 AliVTOFcluster.cxx:26
 AliVTOFcluster.cxx:27
 AliVTOFcluster.cxx:28
 AliVTOFcluster.cxx:29
 AliVTOFcluster.cxx:30
 AliVTOFcluster.cxx:31
 AliVTOFcluster.cxx:32
 AliVTOFcluster.cxx:33
 AliVTOFcluster.cxx:34
 AliVTOFcluster.cxx:35
 AliVTOFcluster.cxx:36
 AliVTOFcluster.cxx:37
 AliVTOFcluster.cxx:38
 AliVTOFcluster.cxx:39
 AliVTOFcluster.cxx:40
 AliVTOFcluster.cxx:41
 AliVTOFcluster.cxx:42
 AliVTOFcluster.cxx:43
 AliVTOFcluster.cxx:44