using namespace std;
#include <iostream>
#include <iomanip>
#include "hmdclistgroupcells.h"
Int_t HMdcList12GroupCells::compare(const HMdcList12GroupCells* lst,
Int_t l1, Int_t l2,HMdcList12GroupCells* lstIdent) const {
if(l1>=12) return 0;
setInBounds(l1,l2);
Int_t nLay=0;
if(lstIdent) lstIdent->clear();
for(Int_t lay=l1; lay<=l2; lay++) {
Int_t laySh = lay*laySz;
if(arr[laySh]==0 || lst->arr[laySh]==0) continue;
Int_t c1=firstCell[lay];
Int_t c2=lst->firstCell[lay];
if( !findOverlap(c1,c2) ) continue;
if(lstIdent) {
if(HMdcTBArray::andArr(cellAddrC(lay,c1),lst->cellAddrC(lay,c1),
(c2-c1)>>2,lstIdent->layAddr(lay))) {
lstIdent->firstCell[lay]=c1;
if(lstIdent->arr[laySh] == 0) lstIdent->shiftLeft(lay);
nLay++;
}
} else if(HMdcTBArray::isIdenBits(cellAddrC(lay,c1),lst->cellAddrC(lay,c1),
(c2-c1)>>2)) nLay++;
}
return nLay;
}
Bool_t HMdcList12GroupCells::findOverlap(Int_t& c1, Int_t& c2) {
if(c1 < c2) {
Int_t ct = c2;
c2 = c1;
c1 = ct;
}
c2 += 48;
if(c1 <= c2) return kTRUE;
return kFALSE;
}
Int_t HMdcList12GroupCells::compareAndUnset(const HMdcList12GroupCells* lst,
HMdcList12GroupCells* lstIdent, Int_t modi) {
Int_t nIdDrTm = 0;
lstIdent->clear();
Int_t lay = (modi != 1) ? 0 : 6;
Int_t layEnd = (modi != 0) ? 12 : 6;
for(;lay<layEnd; lay++) {
Int_t laySh = lay*laySz;
if(arr[laySh]==0 || lst->arr[laySh]==0) continue;
Int_t c1 = firstCell[lay];
Int_t c2 = lst->firstCell[lay];
if( !findOverlap(c1,c2) ) continue;
Int_t nId = HMdcBArray::andArrAndUnset(cellAddr(lay,c1),
lst->cellAddrC(lay,c1),(c2-c1)>>2,lstIdent->layAddr(lay));
if(nId > 0) {
nIdDrTm += nId;
lstIdent->firstCell[lay] = c1;
if(lstIdent->arr[laySh] == 0) lstIdent->shiftLeft(lay);
if(arr[laySh] == 0) shiftLeft(lay);
}
}
return nIdDrTm;
}
Int_t HMdcList12GroupCells::nIdentDrTimes(const HMdcList12GroupCells* lst,
Int_t l1, Int_t l2) const {
if(l1>=12) return 0;
setInBounds(l1,l2);
Int_t nICells=0;
for(Int_t lay=l1; lay<=l2; lay++) {
Int_t laySh = lay*laySz;
if(arr[laySh]==0 || lst->arr[laySh]==0) continue;
Int_t c1 = firstCell[lay];
Int_t c2 = lst->firstCell[lay];
if(c1 < c2) {
Int_t ct = c2;
c2 = c1;
c1 = ct;
}
c2 += 48;
if(c1 <= c2) nICells += HMdcTBArray::compare(cellAddrC(lay,c1),
lst->cellAddrC(lay,c1),(c2-c1)>>2);
}
return nICells;
}
Int_t HMdcList12GroupCells::getMaxNCellsPerLay(void) const {
Int_t maxNum=0;
for(Int_t lay=0;lay<12;lay++) {
Int_t nl=getNCells(lay);
if(nl>maxNum) maxNum=nl;
}
return maxNum;
}
Int_t HMdcList12GroupCells::add(HMdcList12GroupCells* lst) {
Int_t nLay=0;
for(Int_t lay=0; lay<12; lay++) {
UChar_t *lst2=(lst->arr)+lay*laySz;
if(HMdcTBArray::getNSet(lst2,lst2+11) == 0) continue;
UChar_t *lst1=arr+lay*laySz;
if(HMdcTBArray::getNSet(lst1,lst1+11) == 0) {
for(Int_t n=0; n<laySz; n++) lst1[n] = lst2[n];
firstCell[lay]=lst->firstCell[lay];
continue;
}
Int_t sing=firstCell[lay] - lst->firstCell[lay];
if(sing != 0) {
Int_t shift=((sing<0) ? -sing:sing)>>2;
if(shift>12) shift=12;
if( sing < 0 ) {
nLay=HMdcTBArray::getNSet(lst2+laySz-shift,lst2+11);
for(Int_t n=shift; n<laySz; n++) lst1[n] |= lst2[n-shift];
}
else if( sing > 0 ){
nLay=HMdcTBArray::getNSet(lst1+laySz-shift,lst1+11);
for(Int_t n=shift; n<laySz; n++) lst2[n] |= lst1[n-shift];
for(Int_t n=0; n<laySz; n++) lst1[n] = lst2[n];
firstCell[lay]=lst->firstCell[lay];
}
}
else for(Int_t n=0; n<laySz; n++) lst1[n] |= lst2[n];
}
return nLay;
}
Bool_t HMdcList12GroupCells::isIncluded(const HMdcList12GroupCells& lst,
Int_t l1, Int_t l2) const {
for(Int_t lay=l1; lay<=l2; lay++) {
Int_t lsh=lay*laySz;
const UChar_t* arr1=arr+lsh;
if((*arr1)==0) continue;
const UChar_t* arr2=lst.arr+lsh;
if((*arr2)==0) return kFALSE;
Int_t shift=(firstCell[lay]-lst.firstCell[lay])>>2;
if(shift<0 || shift>=laySz) return kFALSE;
const UChar_t* arr1e2=arr1+laySz;
const UChar_t* arr1e=arr1e2-shift;
arr2 += shift;
for(;arr1<arr1e;arr1++) {
if(*arr1 && *arr1 != (*arr1 & *arr2)) return kFALSE;
arr2++;
}
if(shift) for(;arr1<arr1e2;arr1++) if(*arr1) return kFALSE;
}
return kTRUE;
}
Int_t HMdcList12GroupCells::getActiveModule(void) const {
Int_t mod = 0;
for(Int_t lay=0; lay<6; lay++) {
if(arr[lay*laySz] == 0) continue;
mod |= 1;
break;
}
for(Int_t lay=6; lay<12; lay++) {
if(arr[lay*laySz] == 0) continue;
mod |= 2;
break;
}
return mod==3 ? -2 : --mod;
}
void HMdcList12GroupCells::print(void) const {
for(Int_t lay=0; lay<12; lay++) print(lay);
}
void HMdcList12GroupCells::print(Int_t lay) const {
printf("L.%2i %2i cells:",lay+1,getNCells(lay));
Int_t cell=-1;
while((cell=next(lay,cell)) >= 0) printf(" %3i(%i)",cell+1,getTime(lay,cell));
printf("\n");
}
void HMdcList12GroupCells::copyData(const UChar_t* a,const Int_t* fc) {
memcpy(arr,a,144);
memcpy(firstCell,fc,48);
}
Int_t HMdcList24GroupCells::compare(HMdcList24GroupCells* lst,
Int_t l1, Int_t l2) const {
if(l1>=24) return 0;
setInBounds(l1,l2);
Int_t nLay=0;
for(Int_t lay=l1; lay<=l2; lay++) {
Int_t laySh = lay*laySz;
if(arr[laySh]==0 || lst->arr[laySh]==0) continue;
Int_t c1=firstCell[lay];
Int_t c2=lst->firstCell[lay];
if( !HMdcList12GroupCells::findOverlap(c1,c2) ) continue;
if(HMdcTBArray::isIdenBits(cellAddrC(lay,c1),lst->cellAddrC(lay,c1),
(c2-c1)>>2)) nLay++;
}
return nLay;
}
Int_t HMdcList24GroupCells::getMaxNCellsPerLay(void) const {
Int_t maxNum=0;
for(Int_t lay=0;lay<24;lay++) {
Int_t nl=getNCells(lay);
if(nl>maxNum) maxNum=nl;
}
return maxNum;
}
Int_t HMdcList24GroupCells::nIdentDrTimes(HMdcList24GroupCells* lst,
Int_t l1, Int_t l2) const {
if(l1>=24) return 0;
setInBounds(l1,l2);
Int_t nICells=0;
for(Int_t lay=l1; lay<=l2; lay++) {
Int_t laySh = lay*laySz;
if(arr[laySh]==0 || lst->arr[laySh]==0) continue;
Int_t c1 = firstCell[lay];
Int_t c2 = lst->firstCell[lay];
if( HMdcList12GroupCells::findOverlap(c1,c2) ) nICells +=
HMdcTBArray::compare(cellAddrC(lay,c1),lst->cellAddrC(lay,c1),(c2-c1)>>2);
}
return nICells;
}
Int_t HMdcList24GroupCells::add(HMdcList24GroupCells* lst) {
Int_t nLay=0;
for(Int_t lay=0; lay<24; lay++) {
UChar_t *lst2=(lst->arr)+lay*laySz;
if(HMdcTBArray::getNSet(lst2,lst2+11) == 0) continue;
UChar_t *lst1=arr+lay*laySz;
if(HMdcTBArray::getNSet(lst1,lst1+11) == 0) {
for(Int_t n=0; n<laySz; n++) lst1[n] = lst2[n];
firstCell[lay]=lst->firstCell[lay];
continue;
}
Int_t sing=firstCell[lay] - lst->firstCell[lay];
if(sing != 0) {
Int_t shift=((sing<0) ? -sing:sing)>>2;
if(shift>12) shift=12;
if( sing < 0 ) {
nLay=HMdcTBArray::getNSet(lst2+laySz-shift,lst2+11);
for(Int_t n=shift; n<laySz; n++) lst1[n] |= lst2[n-shift];
} else if( sing > 0 ){
nLay=HMdcTBArray::getNSet(lst1+laySz-shift,lst1+11);
for(Int_t n=shift; n<laySz; n++) lst2[n] |= lst1[n-shift];
for(Int_t n=0; n<laySz; n++) lst1[n] = lst2[n];
firstCell[lay]=lst->firstCell[lay];
}
}
else for(Int_t n=0; n<laySz; n++) lst1[n] |= lst2[n];
}
return nLay;
}
Bool_t HMdcList24GroupCells::isIncluded(HMdcList24GroupCells& lst,
Int_t l1, Int_t l2) const {
for(Int_t lay=l1; lay<=l2; lay++) {
Int_t lsh=lay*laySz;
const UChar_t* arr1=arr+lsh;
if((*arr1)==0) continue;
const UChar_t* arr2=lst.arr+lsh;
if((*arr2)==0) return kFALSE;
Int_t shift=(firstCell[lay]-lst.firstCell[lay])>>2;
if(shift<0 || shift>=laySz) return kFALSE;
const UChar_t* arr1e2=arr1+laySz;
const UChar_t* arr1e=arr1e2-shift;
arr2 += shift;
for(;arr1<arr1e;arr1++) {
if(*arr1 && *arr1 != (*arr1 & *arr2)) return kFALSE;
arr2++;
}
if(shift) for(;arr1<arr1e2;arr1++) if(*arr1) return kFALSE;
}
return kTRUE;
}
void HMdcList24GroupCells::print(void) const {
for(Int_t lay=0; lay<24; lay++) print(lay);
}
void HMdcList24GroupCells::print(Int_t lay) const {
printf("L.%i %i cells:",lay+1,getNCells(lay));
Int_t cell=-1;
while((cell=next(lay,cell)) >= 0) printf(" %i(%i)",cell+1,getTime(lay,cell));
printf("\n");
}
Bool_t HMdcList24GroupCells::getSeg(HMdcList12GroupCells& fSeg,Int_t seg) const {
if(&fSeg==0 || seg<0 || seg>1) return kFALSE;
fSeg.copyData(arr + 144*seg,firstCell + 12*seg);
return kTRUE;
}
ClassImp(HMdcList12GroupCells)
ClassImp(HMdcList24GroupCells)
Last change: Sat May 22 13:02:36 2010
Last generated: 2010-05-22 13:02
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.