Back to index

CHoughWorkArray.C

 
//----------------------------------------------------------------------------- 
//  $Header: /tmp_mnt/asis/offline/ceres/cool/project/RCS/CHoughWorkArray.C,v 2.1 1996/10/04 08:42:59 voigt Exp $ 
// 
//  COOL Program Library   
//  Copyright (C) CERES collaboration, 1996 
// 
//  Implementation of CHoughWorkArray class. 
// 
//----------------------------------------------------------------------------- 
#include <iostream.h> 
#include <string.h> 
#include "CHoughWorkArray.h"  
 
void CHoughWorkArray::zeroXY() 
{ 
   int    dimension = maxIndex-minIndex; 
   size_t arraySizeInBytes = dimension * dimension * sizeof(short);    
   memset(xy, 0, arraySizeInBytes); 
} 
 
 
 

Back to index