]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ANALYSIS/AliVEventPool.cxx
AliEveTrackCounter, AliEveTrackCounterEditor
[u/mrichter/AliRoot.git] / ANALYSIS / AliVEventPool.cxx
index 4219da8f27f45064b6ee9f62e46f2b0dbadea7de..df36bb95e2c7d56f816089cb5ec95a1eeafc0e50 100644 (file)
@@ -22,7 +22,6 @@
 
 #include "AliVEventPool.h"
 
-
 ClassImp(AliVEventPool)
 
 
@@ -43,3 +42,18 @@ AliVEventPool::AliVEventPool(const char* name, const char* title):
 }
 
 
+AliVEventPool::AliVEventPool(const AliVEventPool& obj):
+    TNamed(obj),
+    fChain(0)
+{
+    // Copy constructor
+    fChain = obj.fChain;
+}
+
+AliVEventPool& AliVEventPool::operator=(const AliVEventPool& other)
+{
+// Assignment operator
+    TNamed::operator=(other);
+    fChain = other.fChain;
+    return *this;
+}