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$ */
 
// Base class for event pool.
// This class is needed by the AnalysisManager to steer a mixing analysis.
// Author Andreas Morsch
// andreas.morsch@cern.ch

#include "TChain.h"

#include "AliVEventPool.h"

ClassImp(AliVEventPool)


////////////////////////////////////////////////////////////////////////

AliVEventPool::AliVEventPool():
    TNamed(),
    fChain(0)
{
  // Default constructor
}

AliVEventPool::AliVEventPool(const char* name, const char* title):
    TNamed(name, title), 
    fChain()
{
  // Constructor
}


AliVEventPool::AliVEventPool(const AliVEventPool& obj):
    TNamed(obj),
    fChain(obj.fChain)
{
  //
  // Copy constructor
  //
}

AliVEventPool& AliVEventPool::operator=(const AliVEventPool& other)
{
  //
  // Assignment operator
  //
  if(this != &other) {
    TNamed::operator=(other);
    delete fChain;
    fChain = other.fChain;
  }
  return *this;
}
 AliVEventPool.cxx:1
 AliVEventPool.cxx:2
 AliVEventPool.cxx:3
 AliVEventPool.cxx:4
 AliVEventPool.cxx:5
 AliVEventPool.cxx:6
 AliVEventPool.cxx:7
 AliVEventPool.cxx:8
 AliVEventPool.cxx:9
 AliVEventPool.cxx:10
 AliVEventPool.cxx:11
 AliVEventPool.cxx:12
 AliVEventPool.cxx:13
 AliVEventPool.cxx:14
 AliVEventPool.cxx:15
 AliVEventPool.cxx:16
 AliVEventPool.cxx:17
 AliVEventPool.cxx:18
 AliVEventPool.cxx:19
 AliVEventPool.cxx:20
 AliVEventPool.cxx:21
 AliVEventPool.cxx:22
 AliVEventPool.cxx:23
 AliVEventPool.cxx:24
 AliVEventPool.cxx:25
 AliVEventPool.cxx:26
 AliVEventPool.cxx:27
 AliVEventPool.cxx:28
 AliVEventPool.cxx:29
 AliVEventPool.cxx:30
 AliVEventPool.cxx:31
 AliVEventPool.cxx:32
 AliVEventPool.cxx:33
 AliVEventPool.cxx:34
 AliVEventPool.cxx:35
 AliVEventPool.cxx:36
 AliVEventPool.cxx:37
 AliVEventPool.cxx:38
 AliVEventPool.cxx:39
 AliVEventPool.cxx:40
 AliVEventPool.cxx:41
 AliVEventPool.cxx:42
 AliVEventPool.cxx:43
 AliVEventPool.cxx:44
 AliVEventPool.cxx:45
 AliVEventPool.cxx:46
 AliVEventPool.cxx:47
 AliVEventPool.cxx:48
 AliVEventPool.cxx:49
 AliVEventPool.cxx:50
 AliVEventPool.cxx:51
 AliVEventPool.cxx:52
 AliVEventPool.cxx:53
 AliVEventPool.cxx:54
 AliVEventPool.cxx:55
 AliVEventPool.cxx:56
 AliVEventPool.cxx:57
 AliVEventPool.cxx:58
 AliVEventPool.cxx:59
 AliVEventPool.cxx:60
 AliVEventPool.cxx:61
 AliVEventPool.cxx:62
 AliVEventPool.cxx:63
 AliVEventPool.cxx:64
 AliVEventPool.cxx:65
 AliVEventPool.cxx:66
 AliVEventPool.cxx:67