00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #include "G4ITBox.hh"
00037
00038 G4ITBox::G4ITBox() : fNbIT(0), fpFirstIT(0), fpLastIT(0), fpPreviousBox(0), fpNextBox(0)
00039 {;}
00040
00041 G4ITBox::~G4ITBox()
00042 {
00043 if( fNbIT != 0 )
00044 {
00045 G4IT * aIT = fpFirstIT;
00046 G4IT * nextIT;
00047
00048 while( aIT != 0 )
00049 {
00050 nextIT = aIT->GetNext();
00051 delete aIT;
00052 aIT = nextIT;
00053 }
00054 }
00055
00056 if(fpPreviousBox) fpPreviousBox->SetNextBox(fpNextBox) ;
00057 if(fpNextBox) fpNextBox->SetPreviousBox(fpPreviousBox);
00058 }
00059
00060 const G4ITBox & G4ITBox::operator=(const G4ITBox &right)
00061 {
00062 fNbIT = right.fNbIT;
00063 fpFirstIT = right.fpFirstIT;
00064 fpLastIT = right.fpLastIT;
00065 fpPreviousBox = 0;
00066 fpNextBox = 0;
00067 return *this;
00068 }
00069
00070 void G4ITBox::Push( G4IT * aIT )
00071 {
00072 if( fNbIT == 0 )
00073 {
00074 aIT->SetPrevious( 0 );
00075 fpFirstIT = aIT;
00076 }
00077 else
00078 {
00079 fpLastIT->SetNext( aIT );
00080 aIT->SetPrevious( fpLastIT );
00081 }
00082 fpLastIT = aIT;
00083 fNbIT++;
00084 aIT->SetITBox(this);
00085 }
00086
00087 void G4ITBox::Extract( G4IT * aStackedIT )
00088 {
00089 if( aStackedIT == fpFirstIT )
00090 {
00091 fpFirstIT = aStackedIT->GetNext();
00092 }
00093 else if( aStackedIT == fpLastIT )
00094 {
00095 fpLastIT = aStackedIT->GetPrevious();
00096
00097 }
00098
00099 if( aStackedIT->GetNext())
00100 aStackedIT->GetNext()->SetPrevious(aStackedIT->GetPrevious());
00101 if( aStackedIT->GetPrevious())
00102 aStackedIT->GetPrevious()->SetNext(aStackedIT->GetNext());
00103
00104 aStackedIT->SetNext(0);
00105 aStackedIT->SetPrevious(0);
00106 aStackedIT->SetITBox(0);
00107 fNbIT--;
00108 }
00109
00110 G4IT* G4ITBox::FindIT(const G4Track& track)
00111 {
00112 if( fNbIT == 0 ) return 0;
00113
00114 G4IT * temp = fpLastIT;
00115 G4bool find = false;
00116
00117 while(find == false && temp != 0)
00118 {
00119 if(temp-> GetTrack() == &track)
00120 {
00121 find = true;
00122 break;
00123 }
00124 temp = temp->GetPrevious();
00125 }
00126
00127 return temp;
00128 }
00129
00130 const G4IT* G4ITBox::FindIT(const G4Track& track) const
00131 {
00132 if( fNbIT == 0 ) return 0;
00133
00134 const G4IT * temp = fpLastIT;
00135 G4bool find = false;
00136
00137 while(find == false && temp != 0)
00138 {
00139 if(temp-> GetTrack() == &track)
00140 {
00141 find = true;
00142 break;
00143 }
00144 temp = temp->GetPrevious();
00145 }
00146
00147 return temp;
00148 }
00149
00150 void G4ITBox::TransferTo(G4ITBox * aStack)
00151 {
00152 G4IT * ITToTransfer = fpFirstIT;
00153 while(fNbIT)
00154 {
00155 Extract(ITToTransfer);
00156 aStack->Push(ITToTransfer);
00157 ITToTransfer = ITToTransfer->GetNext();
00158 }
00159 }