]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRIGGER/AliTrigConnector.cxx
adding acceptance bins, removing function declarations
[u/mrichter/AliRoot.git] / TRIGGER / AliTrigConnector.cxx
index 6321d11617488440ae771b84314d9886c85fe79f..39eb51ea77f3351298655ff117b3f1a5a2dcc182 100644 (file)
 
 ClassImp(AliTrigConnector)
 
-//______________________________________________________________________________
-AliTrigConnector::AliTrigConnector(const AliTrigConnector &other)
-                 :TNamed(other),
-                  fFeeder(other.fFeeder),
-                  fOutput(other.fOutput),
-                  fNclients(other.fNclients),
-                  fArraySize(other.fArraySize),
-                  fInputs(0),
-                  fDevices(0)
-{
-// Copy ctor.
-  if (fArraySize && other.fInputs) {
-    fInputs = new Int_t[fArraySize];
-    memcpy(fInputs, other.fInputs, fNclients*sizeof(Int_t));
-    fDevices = new TObjArray(fArraySize);
-    for (Int_t i=0; i<fNclients; i++) fDevices->Add(other.fDevices->At(i));
-  }   
-}                        
-
 //______________________________________________________________________________
 AliTrigConnector::~AliTrigConnector()
 {