Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Data Structures | Functions
UVoxelizer.cc File Reference
#include <iostream>
#include <iomanip>
#include <sstream>
#include <algorithm>
#include <set>
#include "VUSolid.hh"
#include "UUtils.hh"
#include "UOrb.hh"
#include "UVoxelizer.hh"

Go to the source code of this file.

Data Structures

class  UVoxelComparator
 

Functions

void findComponentsFastest (unsigned int mask, vector< int > &list, int i)
 

Function Documentation

void findComponentsFastest ( unsigned int  mask,
vector< int > &  list,
int  i 
)
inline

Definition at line 847 of file UVoxelizer.cc.

References int().

Referenced by UVoxelizer::GetCandidatesVoxelArray().

848 {
849  for (int byte = 0; byte < (int)(sizeof(unsigned int)); byte++)
850  {
851  if (int maskByte = mask & 0xFF)
852  {
853  for (int bit = 0; bit < 8; bit++)
854  {
855  if (maskByte & 1)
856  list.push_back(8 * (sizeof(unsigned int)*i + byte) + bit);
857  if (!(maskByte >>= 1)) break;
858  }
859  }
860  mask >>= 8;
861  }
862 }
typedef int(XMLCALL *XML_NotStandaloneHandler)(void *userData)