Changeset 1532 in Sophya for trunk/ArchTOIPipe/ProcWSophya/genwproc.cc
- Timestamp:
- Jun 15, 2001, 2:58:44 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/ProcWSophya/genwproc.cc
r1502 r1532 89 89 } 90 90 91 TVector< int_8> GenWindowTOIProcessor::GetWFlag(int_4 numtoi)91 TVector<uint_8> GenWindowTOIProcessor::GetWFlag(int_4 numtoi) 92 92 { 93 93 if(numtoi<0 || numtoi>=NbInput) … … 108 108 } 109 109 110 int_8 * GenWindowTOIProcessor::GetWFlagPointer(int_4 numtoi)110 uint_8 * GenWindowTOIProcessor::GetWFlagPointer(int_4 numtoi) 111 111 { 112 112 if(numtoi<0 || numtoi>=NbInput) … … 117 117 } 118 118 119 void GenWindowTOIProcessor::GetData(int_4 numtoi, int_8 numsample, r_8 & data, int_8 & flag)119 void GenWindowTOIProcessor::GetData(int_4 numtoi, int_8 numsample, r_8 & data, uint_8 & flag) 120 120 { 121 121 if(numtoi<0 || numtoi>=NbInput) … … 133 133 //////////////////////////////////////////////////////////////// 134 134 void GenWindowTOIProcessor::PutWData(int numtoi,int_8 numsample 135 ,TVector<r_8>& data,TVector< int_8>& flag)135 ,TVector<r_8>& data,TVector<uint_8>& flag) 136 136 { 137 137 if(numtoi<0 || numtoi>=NbOutput || NbOutput<=0) … … 151 151 152 152 void GenWindowTOIProcessor::PutWData(int numtoi,int_8 numsample 153 , r_8 data,int_8 flag)153 , r_8 data, uint_8 flag) 154 154 { 155 155 if(numtoi<0 || numtoi>=NbOutput || NbOutput<=0) … … 170 170 /******* cmv routines 171 171 void GenWindowTOIProcessor::PutWData(int_4 numtoi,int_8 numsample 172 ,TVector<r_8>& data,TVector< int_8>& flag)172 ,TVector<r_8>& data,TVector<uint_8>& flag) 173 173 { 174 174 if(numtoi<0 || numtoi>=NbOutput || NbOutput<=0) … … 186 186 187 187 void GenWindowTOIProcessor::PutWData(int_4 numtoi,int_8 numsample 188 ,r_8 data, int_8 flag)188 ,r_8 data, uint_8 flag) 189 189 { 190 190 if(numtoi<0 || numtoi>=NbOutput || NbOutput<=0) … … 253 253 } 254 254 255 TVector< int_8> GenWindowTOIProcessor::GetWFlag(char cw,int_4 numtoi)255 TVector<uint_8> GenWindowTOIProcessor::GetWFlag(char cw,int_4 numtoi) 256 256 // cr='l' fenetre de gauche, 'c' du centre, 'r' de droite, autre = tout 257 257 { … … 275 275 } 276 276 277 int_8 * GenWindowTOIProcessor::GetWFlagPointer(char cw,int_4 numtoi,int_4& n)277 uint_8 * GenWindowTOIProcessor::GetWFlagPointer(char cw,int_4 numtoi,int_4& n) 278 278 // cr='l' fenetre de gauche, 'c' du centre, 'r' de droite, autre = tout 279 279 { … … 500 500 int i,ii=0; 501 501 r_8 * datatot = WDataIn[0].Data(); 502 int_8 * flagtot = WFlagIn[0].Data();502 uint_8 * flagtot = WFlagIn[0].Data(); 503 503 r_8 * data = GetWDataPointer(); 504 int_8 * flag = GetWFlagPointer();504 uint_8 * flag = GetWFlagPointer(); 505 505 int_4 nl,nc,nr; 506 506 r_8 * datal = GetWDataPointer('l',nl); 507 int_8 * flagl = GetWFlagPointer('l',nl);507 uint_8 * flagl = GetWFlagPointer('l',nl); 508 508 r_8 * datac = GetWDataPointer('c',nc); 509 int_8 * flagc = GetWFlagPointer('c',nc);509 uint_8 * flagc = GetWFlagPointer('c',nc); 510 510 r_8 * datar = GetWDataPointer('r',nr); 511 int_8 * flagr = GetWFlagPointer('r',nr);511 uint_8 * flagr = GetWFlagPointer('r',nr); 512 512 513 513 cout<<"-------- ks = "<<ks<<endl;
Note:
See TracChangeset
for help on using the changeset viewer.