]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSpList.cxx
fixed the tainted variables
[u/mrichter/AliRoot.git] / ITS / AliITSpList.cxx
index ace7ecf5e4f5ec306037100eb627351117f8def1..c9e85eea895b9e3b44ecf0a3a8da3604902c45be 100644 (file)
  **************************************************************************/
 /* $Id$ */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <iostream.h>
-#include <iomanip.h>
-#include <TObjArray.h>
-#include <TRandom.h>
-#include <TMath.h>
+//***********************************************************************
+//
+// It consist of a TClonesArray of 
+// AliITSpListItem objects
+// This array can be accessed via 2 indexed
+// it is used at digitization level by 
+// all the 3 ITS subdetectors
+//
+// ***********************************************************************
 
 #include "AliITSpList.h"
+#include "AliITSpListItem.h"
+
 
 //______________________________________________________________________
 
-ClassImp(AliITSpList);
+ClassImp(AliITSpList)
 //______________________________________________________________________
-AliITSpList::AliITSpList(){
+AliITSpList::AliITSpList():
+fNi(0),
+fNj(0),
+fa(0),
+fEntries(0){
     // Default constructor
     // Inputs:
     //    none.
@@ -37,12 +45,13 @@ AliITSpList::AliITSpList(){
     // Return:
     //    A zeroed/empty AliITSpList class.
 
-    fNi = 0;
-    fNj = 0;
-    fa  = 0;
 }
 //______________________________________________________________________
-AliITSpList::AliITSpList(Int_t imax,Int_t jmax){
+AliITSpList::AliITSpList(Int_t imax,Int_t jmax):
+fNi(imax),
+fNj(jmax),
+fa(new AliITSpListItem[imax*jmax]),
+fEntries(0){
     // Standard constructor
     // Inputs:
     //    none.
@@ -51,54 +60,32 @@ AliITSpList::AliITSpList(Int_t imax,Int_t jmax){
     // Return:
     //    A setup AliITSpList class.
 
-    fNi = imax;
-    fNj = jmax;
-    fEnteries = 0;
-    fa  = new TObjArray(fNi*fNj); // elements are zeroed by 
-                                  // TObjArray creator
 }
 //______________________________________________________________________
 AliITSpList::~AliITSpList(){
     // Default destructor
-    // Inputs:
-    //    none.
-    // Outputs:
-    //    none.
-    // Return:
-    //    a properly destroyed class
 
-    for(Int_t i=0;i<GetMaxIndex();i++) if(fa->At(i)!=0){
-        delete fa->At(i);
-        fa->AddAt(0,i); // zero content
-    } // end for i && if
-    fNi = 0;
-    fNj = 0;
-    delete fa;
-    fa  = 0;
-    fEnteries = 0;
+  delete [] fa;
+  fNi = 0;
+  fNj = 0;
+  fEntries = 0;
 }
+
 //______________________________________________________________________
 void AliITSpList::ClearMap(){
-    // Delete all AliITSpListItems and zero TObjArray.
+    // Delete all AliITSpListItems and zero TClonesArray.
     // Inputs:
     //    none.
     // Outputs:
     //    none.
     // Return:
     //    A zeroed AliITSpList class.
-
-    fa->Delete();
-    /*
-    for(Int_t i=0;i<GetMaxIndex();i++) if(fa->At(i)!=0){
-        delete fa->At(i);
-        fa->AddAt(0,i); // zero content
-    } // end for i && if
-    */
-    fEnteries = 0;
+  for(Int_t i=0; i<fEntries; i++)(fa[i]).MarkUnused();
+  fEntries = 0;
 }
 //______________________________________________________________________
 void AliITSpList::DeleteHit(Int_t i,Int_t j){
-    // Delete a particular AliITSpListItems and zero TObjArray.
+    // Delete a particular AliITSpListItems.
     // Inputs:
     //    Int_t i   Row number
     //    Int_t j   Columns number
@@ -107,12 +94,8 @@ void AliITSpList::DeleteHit(Int_t i,Int_t j){
     // Return:
     //    none.
     Int_t k = GetIndex(i,j);
-
-    if(fa->At(k)!=0){
-        delete fa->At(k);
-        fa->AddAt(0,k); // zero content
-    } // end for i && if
-    if(k==fEnteries-1) fEnteries--;
+    if((fa[k]).IsUsed())(fa[k]).MarkUnused();
+    if(k==fEntries-1) fEntries--;
 }
 //______________________________________________________________________
 AliITSpList& AliITSpList::operator=(const AliITSpList &source){
@@ -124,33 +107,18 @@ AliITSpList& AliITSpList::operator=(const AliITSpList &source){
     // Return:
     //    A copied AliITSpList object.
 
-    if(this == &source) return *this;
-
-    if(this->fa!=0){ // if this->fa exists delete it first.
-        for(Int_t i=0;i<GetMaxIndex();i++) if(fa->At(i)!=0){
-            delete fa->At(i);
-            fa->AddAt(0,i); // zero content
-        } // end for i && if
-        delete this->fa;
-    } // end if this->fa!=0
-    this->fNi = source.fNi;
-    this->fNj = source.fNj;
-    this->fa = new TObjArray(*(source.fa));
-    this->fEnteries = source.fEnteries;
-
-    return *this;
+  this->~AliITSpList();
+  new(this) AliITSpList(source);
+  return *this;
 }
 //______________________________________________________________________
-AliITSpList::AliITSpList(AliITSpList &source){
-    // Copy operator
-    // Inputs:
-    //    AliITSpList &source   A AliITSpList Object
-    // Outputs:
-    //    none.
-    // Return:
-    //    A copied AliITSpList object
-
-    *this = source;
+AliITSpList::AliITSpList(const AliITSpList &source) : AliITSMap(source),
+fNi(source.fNi),
+fNj(source.fNj),
+fa(new AliITSpListItem[fNi*fNj]),
+fEntries(source.fEntries){
+    // Copy constructor
+  for(Int_t i=0; i<fEntries; i++)(fa[i]).Build(source.fa[i]);
 }
 //______________________________________________________________________
 void AliITSpList::AddItemTo(Int_t fileIndex, AliITSpListItem *pl) {
@@ -165,18 +133,16 @@ void AliITSpList::AddItemTo(Int_t fileIndex, AliITSpListItem *pl) {
     // Return:
     //    none.
     Int_t index = pl->GetIndex();
-
-    if( fa->At( index ) == 0 ) { // most create AliITSpListItem
-        fa->AddAt(new AliITSpListItem(-2,-1,pl->GetModule(),index,0.0),index);
-    } // end if
-    ((AliITSpListItem*)(fa->At(index)))->AddTo( fileIndex,pl);
-    if(index>=fEnteries) fEnteries = index +1;
+    AliITSpListItem &lit = fa[index];
+    if(!lit.IsUsed())lit.Build(-2,-1,pl->GetModule(),index,0.);
+    lit.AddTo(fileIndex,pl);
+    if(index>=fEntries) fEntries = index +1;
 }
 //______________________________________________________________________
 void AliITSpList::AddSignal(Int_t i,Int_t j,Int_t trk,Int_t ht,Int_t mod,
                        Double_t signal){
-    // Adds a Signal value to the TObjArray at i,j. Creates the AliITSpListItem
+    // Adds a Signal value to the TClonesArray at i,j. 
+    // Creates the AliITSpListItem
     // if needed.
     // Inputs:
     //    Int_t i         Row number for this signal
@@ -190,17 +156,20 @@ void AliITSpList::AddSignal(Int_t i,Int_t j,Int_t trk,Int_t ht,Int_t mod,
     // Return:
     //    none.
     Int_t index = GetIndex(i,j);
-
-    if(GetpListItem(index)==0){ // most create AliITSpListItem
-        fa->AddAt(new AliITSpListItem(trk,ht,mod,index,signal),index);
-    }else{ // AliITSpListItem exists, just add signal to it.
-        GetpListItem(index)->AddSignal(trk,ht,mod,index,signal);
-    } // end if
-    if(index>=fEnteries) fEnteries = index +1;
+    if (index<0) return;
+    AliITSpListItem &lit = fa[index];
+    if(!lit.IsUsed()){
+      lit.Build(trk,ht,mod,index,signal);
+    }
+    else {
+      lit.AddSignal(trk,ht,mod,index,signal);
+    }
+    if(index>=fEntries) fEntries = index +1;
 }
 //______________________________________________________________________
 void AliITSpList::AddNoise(Int_t i,Int_t j,Int_t mod,Double_t noise){
-    // Adds a noise value to the TObjArray at i,j. Creates the AliITSpListItem
+    // Adds a noise value to the TClonesArray at i,j. 
+    // Creates the AliITSpListItem
     // if needed.
     // Inputs:
     //    Int_t i        Row number for this noise
@@ -211,382 +180,27 @@ void AliITSpList::AddNoise(Int_t i,Int_t j,Int_t mod,Double_t noise){
     // Return:
     //    none.
     Int_t index = GetIndex(i,j);
-
-    if(GetpListItem(index)==0){ // most create AliITSpListItem
-        fa->AddAt(new AliITSpListItem(mod,index,noise),index);
-    }else{ // AliITSpListItem exists, just add signal to it.
-        GetpListItem(index)->AddNoise(mod,index,noise);
-    } // end if
-    if(index>=fEnteries) fEnteries = index +1;
-}
-//______________________________________________________________________
-
-ClassImp(AliITSpListItem)
-//______________________________________________________________________
-AliITSpListItem::AliITSpListItem(){
-    // Default constructor
-    // Inputs:
-    //    none.
-    // Outputs:
-    //    none.
-    // Return:
-    //    A zeroed/empty AliITSpListItem class.
-
-    fmodule = -1;
-    findex  = -1;
-    for(Int_t i=0;i<this->fkSize;i++){
-        this->fTrack[i]  = -2;
-        this->fHits[i]   = -1;
-        this->fSignal[i] = 0.0;
-    } // end if i
-    fTsignal = 0.0;
-    fNoise   = 0.0;
-    fSignalAfterElect = 0.0;
-}
-//______________________________________________________________________
-AliITSpListItem::AliITSpListItem(Int_t module,Int_t index,Double_t noise){
-    // Standard noise constructor
-    // Inputs:
-    //    Int_t module   The module where this noise occurred
-    //    Int_t index    The cell index where this noise occurred
-    //    Double_t noise The value of the noise.
-    // Outputs:
-    //    none.
-    // Return:
-    //    A setup and noise filled AliITSpListItem class.
-
-    this->fmodule    = module;
-    this->findex     = index;
-    for(Int_t i=0;i<this->fkSize;i++){
-        this->fTrack[i]  = -2;
-        this->fSignal[i] = 0.0;
-        this->fHits[i]   = -1;
-    } // end if i
-    this->fTsignal = 0.0;
-    this->fSignalAfterElect = 0.0;
-    this->fNoise   = noise;
-}
-//______________________________________________________________________
-AliITSpListItem::AliITSpListItem(Int_t track,Int_t hit,Int_t module,
-                               Int_t index,Double_t signal){
-    // Standard signal constructor
-    // Inputs:
-    //    Int_t track     The track number which produced this signal
-    //    Int_t hit       The hit number which produced this signal
-    //    Int_t module    The module where this signal occurred
-    //    Int_t index     The cell index where this signal occurred
-    //    Double_t signal The value of the signal (ionization)
-    // Outputs:
-    //    none.
-    // Return:
-    //    A setup and signal filled  AliITSpListItem class.
-
-    this->fmodule    = module;
-    this->findex     = index;
-    this->fTrack[0]  = track;
-    this->fHits[0]   = hit;
-    this->fSignal[0] = signal;
-    for(Int_t i=1;i<this->fkSize;i++){
-        this->fTrack[i]  = -2;
-        this->fSignal[i] = 0.0;
-        this->fHits[i]   = -1;
-    } // end if i
-    this->fTsignal = signal;
-    this->fNoise   = 0.0;
-    this->fSignalAfterElect   = 0.0;
-}
-//______________________________________________________________________
-AliITSpListItem::~AliITSpListItem(){
-    // Destructor
-    // Inputs:
-    //    none.
-    // Outputs:
-    //    none.
-    // Return:
-    //    A properly destroyed AliITSpListItem class.
-/*
-    this->fmodule = 0;
-    this->findex  = 0;
-    for(Int_t i=0;i<=this->GetNsignals();i++){
-        this->fTrack[i]  = 0;
-        this->fSignal[i] = 0.0;
-        this->fHits[i]   = 0;
-    } // end if i
-    this->fTsignal = 0.0;
-    this->fNoise   = 0.0;
-*/    
-}
-//______________________________________________________________________
-AliITSpListItem& AliITSpListItem::operator=(const AliITSpListItem &source){
-    // = operator
-    // Inputs:
-    //    AliITSpListItem &source   A AliITSpListItem Object
-    // Outputs:
-    //    none.
-    // Return:
-    //    A copied AliITSpListItem object
-
-    if(this == &source) return *this;
-
-    this->fmodule = source.fmodule;
-    this->findex  = source.findex;
-    for(Int_t i=0;i<this->fkSize;i++){
-        this->fTrack[i]  = source.fTrack[i];
-        this->fSignal[i] = source.fSignal[i];
-        this->fHits[i]   = source.fHits[i];
-    } // end if i
-    this->fTsignal = source.fTsignal;
-    this->fNoise   = source.fNoise;
-    this->fSignalAfterElect   = source.fSignalAfterElect;
-
-    return *this;
-}
-//______________________________________________________________________
-AliITSpListItem::AliITSpListItem(AliITSpListItem &source){
-    // Copy operator
-    // Inputs:
-    //    AliITSpListItem &source   A AliITSpListItem Object
-    // Outputs:
-    //    none.
-    // Return:
-    //    A copied AliITSpListItem object
-
-    *this = source;
-}
-//______________________________________________________________________
-void AliITSpListItem::AddSignal(Int_t track,Int_t hit,Int_t module,
-                               Int_t index,Double_t signal){
-    // Adds this track number and signal to the pList and orders them
-    // Inputs:
-    //    Int_t track     The track number which produced this signal
-    //    Int_t hit       The hit number which produced this signal
-    //    Int_t module    The module where this signal occurred
-    //    Int_t index     The cell index where this signal occurred
-    //    Double_t signal The value of the signal (ionization)
-    // Outputs:
-    //    none.
-    // Return:
-    //    none.
-    Int_t    i,j,trk,hts;
-    Double_t sig;
-    Bool_t   flg=kFALSE;
-
-    if(findex!=index || fmodule!=module) 
-        Warning("AddSignal","index=%d != findex=%d or module=%d != fmodule=%d",
-                 index,findex,module,fmodule);
-    fTsignal += signal; // Keep track of sum signal.
-
-    for(i=0;i<fkSize;i++) if( track==fTrack[i] && hit==fHits[i] ){
-        fSignal[i] += signal;
-        flg = kTRUE;
-    } // end for i & if.
-    if(flg){ // resort arrays.  
-        for(i=1;i<fkSize;i++){
-            j = i;
-            while(j>0 && fSignal[j]>fSignal[j-1]){
-                trk = fTrack[j-1];
-                hts = fHits[j-1];
-                sig = fSignal[j-1];
-                fTrack[j-1]  = fTrack[j];
-                fHits[j-1]   = fHits[j];
-                fSignal[j-1] = fSignal[j];                
-                fTrack[j]  = trk;
-                fHits[j]   = hts;
-                fSignal[j] = sig;
-                j--;
-            } // end while
-        } // end if i
-        return;
-    } // end if added to existing and resorted array
-
-    // new entry add it in order.
-    // if this signal is <= smallest then don't add it.
-    if(signal <= fSignal[fkSize-1]) return;
-    for(i=fkSize-2;i>=0;i--){
-        if(signal > fSignal[i]){
-            fSignal[i+1] = fSignal[i];
-            fTrack[i+1]  = fTrack[i];
-            fHits[i+1]   = fHits[i];
-        }else{
-            fSignal[i+1] = signal;
-            fTrack[i+1]  = track;
-            fHits[i+1]   = hit;
-            return; // put it in the right place, now exit.
-        } //  end if
-    } // end if; end for i
-    // Still haven't found the right place. Must be at top of list.
-    fSignal[0] = signal;
-    fTrack[0]  = track;
-    fHits[0]   = hit;
-    return;
-}
-//______________________________________________________________________
-void AliITSpListItem::AddNoise(Int_t module,Int_t index,Double_t noise){
-    // Adds noise to this existing list.
-    // Inputs:
-    //    Int_t module   The module where this noise occurred
-    //    Int_t index    The cell index where this noise occurred
-    //    Double_t noise The value of the noise.
-    // Outputs:
-    //    none.
-    // Return:
-    //    none.
-
-    if(findex!=index || fmodule!=module) 
-        Warning("AddNoise","index=%d != findex=%d or module=%d != fmodule=%d",
-            index,findex,module,fmodule);
-    fNoise += noise; // Keep track of sum signal.
-}
-//______________________________________________________________________
-void AliITSpListItem::AddSignalAfterElect(Int_t module,Int_t index,Double_t signal){
-    // Adds signal after electronics to this existing list.
-    // Inputs:
-    //    Int_t module   The module where this noise occurred
-    //    Int_t index    The cell index where this noise occurred
-    //    Double_t signal The value of the signal.
-    // Outputs:
-    //    none.
-    // Return:
-    //    none.
-
-    if(findex!=index || fmodule!=module) 
-        Warning("AddSignalAfterElect","index=%d != findex=%d or module=%d "
-               "!= fmodule=%d",index,findex,module,fmodule);
-    fSignalAfterElect += signal; // Keep track of sum signal.
-}
-//______________________________________________________________________
-void AliITSpListItem::Add(AliITSpListItem *pl){
-    // Adds the contents of pl to this
-    // pl could come from different module and index 
-    // Inputs:
-    //    AliITSpListItem *pl  an AliITSpListItem to be added to this class.
-    // Outputs:
-    //    none.
-    // Return:
-    //    none.
-    Int_t i;
-    Double_t sig  = 0.0;
-    Double_t sigT = 0.0;
-
-    for(i=0;i<pl->GetNsignals();i++){
-        sig = pl->GetSignal(i); 
-        if( sig <= 0.0 ) break; // no more signals
-        AddSignal(pl->GetTrack(i),pl->GetHit(i),fmodule,findex,sig);
-        sigT += sig;
-    } // end for i
-    fTsignal += (pl->fTsignal - sigT);
-    fNoise   += pl->fNoise;
-    return;
-}
-//______________________________________________________________________
-void AliITSpListItem::AddTo(Int_t fileIndex,AliITSpListItem *pl){
-    // Adds the contents of pl to this with track number off set given by
-    // fileIndex.
-    // Inputs:
-    //    Int_t fileIndex      track number offset value
-    //    AliITSpListItem *pl  an AliITSpListItem to be added to this class.
-    // Outputs:
-    //    none.
-    // Return:
-    //    none.
-    Int_t i,trk;
-    Double_t sig  = 0.0;
-
-    Int_t module = pl->GetModule();
-    Int_t index  = pl->GetIndex();
-    for(i=0;i<pl->GetNsignals();i++){
-        sig = pl->GetSignal(i); 
-        if( sig <= 0.0 ) break; // no more signals
-        trk = pl->GetTrack(i);
-        trk += fileIndex; 
-        AddSignal(trk,pl->GetHit(i),module,index,sig);
-    } // end for i
-    fSignalAfterElect += (pl->fSignalAfterElect + pl->fNoise - fNoise);
-    fNoise = pl->fNoise;
+    if (index<0) return;
+    AliITSpListItem &lit = fa[index];
+    if(!lit.IsUsed()){
+      lit.Build(mod,index,noise);
+    }
+    else {
+      lit.AddNoise(mod,index,noise);
+    } 
+    if(index>=fEntries) fEntries = index +1;
+}
+//______________________________________________________________________
+void AliITSpList::GetCell(Int_t index,Int_t &i,Int_t &j) const {
+  // returns the i,j index numbers from the linearized index computed
+  // with GetIndex
+  if(index<0 || index>=fNi*fNj){
+    Warning("GetCell","Index out of range 0<=index=%d<%d",
+           index,fNi*fNj);
+    i=-1;j=-1;
     return;
+  } // end if
+  i = index/fNj;
+  j = index - fNj*i;
+  return;
 }
-//______________________________________________________________________
-Int_t AliITSpListItem::ShiftIndex(Int_t in,Int_t trk){
-    // Shift an index number to occupy the upper four bits. No longer used.
-    // Inputs:
-    //    Int_t in   The file number
-    //    Int_t trk  The track number
-    // Outputs:
-    //    none.
-    // Return:
-    //    Int_t The track number with the file number in the upper bits.
-    Int_t si = sizeof(Int_t) * 8;
-    UInt_t uin,utrk; // use UInt_t to avoid interger overflow-> goes negative.
-
-    uin = in;
-    utrk = trk;
-    for(Int_t i=0;i<si-4;i++) uin *= 2;
-    uin += utrk;
-    in = uin;
-    return in;
-}
-//______________________________________________________________________
-void AliITSpListItem::Print(ostream *os){
-    //Standard output format for this class
-    // Inputs:
-    //    ostream *os  The output stream
-    // Outputs:
-    //    none.
-    // Return:
-    //    none.
-    Int_t i;
-
-    *os << fmodule <<","<<findex<<",";
-    *os << fkSize <<",";
-    for(i=0;i<fkSize;i++) *os << fTrack[i] <<",";
-    for(i=0;i<fkSize;i++) *os << fHits[i] <<",";
-    for(i=0;i<fkSize;i++) *os << fSignal[i] <<",";
-    *os << fTsignal <<","<< fNoise << "," << fSignalAfterElect;
-}
-//______________________________________________________________________
-void AliITSpListItem::Read(istream *is){
-    // Standard output streaming function.
-    // Inputs:
-    //    istream *is The input stream
-    // Outputs:
-    //    none.
-    // Return:
-    //    none.
-    Int_t i,iss;
-
-    *is >> fmodule >> findex;
-    *is >> iss; // read in fkSize
-    for(i=0;i<fkSize&&i<iss;i++) *is >> fTrack[i];
-    for(i=0;i<fkSize&&i<iss;i++) *is >> fHits[i];
-    for(i=0;i<fkSize&&i<iss;i++) *is >> fSignal[i];
-    *is >> fTsignal >> fNoise >> fSignalAfterElect;
-}
-//______________________________________________________________________
-ostream &operator<<(ostream &os,AliITSpListItem &source){
-    // Standard output streaming function.
-    // Inputs:
-    //    ostream &os             The output stream
-    //    AliITSpListItem &source The AliITSpListItem object to be written out.
-    // Outputs:
-    //    none.
-    // Return:
-    //    ostream  The output stream
-
-    source.Print(&os);
-    return os;
-}
-//______________________________________________________________________
-istream &operator>>(istream &os,AliITSpListItem &source){
-    // Standard output streaming function.
-    // Inputs:
-    //    istream os              The input stream
-    //    AliITSpListItem &source The AliITSpListItem object to be inputted
-    // Outputs:
-    //    none.
-    // Return:
-    //    istream The input stream.
-
-    source.Read(&os);
-    return os;
-}
-