45 fArray(&fRealArray[0])
58 size_t needed =
SizeOf(maxlevel);
59 char *ptr =
new char[ needed ];
89 char *ptr =
new char[ needed ];
147 char *where =
reinterpret_cast<char*
>(
this);
148 for (
size_t i=0; i<nobj; ++i, where += needed) {
175 if (&other ==
this)
return *
this;
188 Error(
"AddLevel",
"You must initialize from navigator or copy from another branch array first.");
213 if (value==0)
return kTRUE;
223 if (value!=0)
return kTRUE;
233 if (value>0)
return kTRUE;
243 if (value<0)
return kTRUE;
253 if (value>=0)
return kTRUE;
263 if (value<=0)
return kTRUE;
277 while(nabove-nbelow > 1) {
278 middle = (nabove+nbelow)/2;
279 pind = array[middle-1];
280 if (*value == *pind)
return middle-1;
281 if (*value < *pind) nabove = middle;
282 else nbelow = middle;
299 for (i=0; i<maxLevel+1; i++) {
300 if (
fArray[i]==otherArray[i])
continue;
304 if (
fLevel==otherLevel)
return 0;
305 if (
fLevel<otherLevel)
return -1;
324 Fatal(
"Init",
"Requested level %d exceeds maximum level %d", level+1,
fMaxLevel);
341 Fatal(
"InitFromNavigator",
"Requested level %d exceeds maximum level %d", level+1,
fMaxLevel);
369 printf(
"branch: %s\n", path.
Data());
377 for (
Int_t i=0; i<
n; i++) index[i] = i;
395 for (i=1; i<maxlev+1; ++i) {
400 for (i=0; i<navlev-matchlev; i++) nav->
CdUp();
virtual const char * GetName() const
Returns name of object.
void SetOutside(Bool_t flag=kTRUE)
static void ReleaseInstance(TGeoBranchArray *obj)
Releases the space allocated for the object.
Geometrical transformation package.
TGeoNode * GetNode(const char *name) const
get the pointer to a daughter node
Bool_t operator!=(const TGeoBranchArray &other) const
Not equal operator.
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Short_t Min(Short_t a, Short_t b)
Bool_t operator>(const TGeoBranchArray &other) const
Is equal operator.
TGeoNodeCache * GetCache() const
Bool_t operator==(const TGeoBranchArray &other) const
Is equal operator.
void InitFromNavigator(TGeoNavigator *nav)
Init the branch array from current navigator state.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Bool_t operator<(const TGeoBranchArray &other) const
Is equal operator.
static TGeoBranchArray * MakeCopy(const TGeoBranchArray &other)
Make a copy of a branch array at the location (if indicated)
Special pool of reusable nodes.
virtual void Print(Option_t *option="") const
Print branch information.
void CopyFrom(const TGeoMatrix *other)
Fast copy method.
Bool_t operator<=(const TGeoBranchArray &other) const
Is equal operator.
void UpdateArray(size_t nobj)
Updates the internal addresses for n contiguous objects which have the same fMaxLevel Updates the int...
virtual ~TGeoBranchArray()
void GetPath(TString &path) const
Fill path pointed by the array.
Bool_t operator>=(const TGeoBranchArray &other) const
Is equal operator.
void CleanMatrix()
Garbage collect the stored matrix.
static TGeoBranchArray * MakeCopyAt(const TGeoBranchArray &other, void *addr)
Make a copy of a branch array at the location (if indicated)
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
void CdDown(Int_t index)
Make a daughter of current node current.
static Long64_t BinarySearch(Long64_t n, const TGeoBranchArray **array, TGeoBranchArray *value)
Binary search in an array of n pointers to branch arrays, to locate value.
void Init(TGeoNode **branch, TGeoMatrix *global, Int_t level)
Init the branch array from an array of nodes, the global matrix for the path and the level...
void CdUp()
Go one level up in geometry.
static TGeoBranchArray * MakeInstance(size_t maxlevel)
Make an instance of the class which allocates the node array.
TGeoNode ** GetArray() const
void AddLevel(Int_t dindex)
Add and extra daughter to the current path array. No validity check performed !
TGeoNode * GetMother(Int_t up=1) const
TGeoBranchArray & operator=(const TGeoBranchArray &)
Assignment. Not valid anymore. Use TGeoBranchArray::MakeCopy instead.
Mother of all ROOT objects.
Class providing navigation API for TGeo geometries.
A node represent a volume positioned inside another.They store links to both volumes and to the TGeoM...
#define dest(otri, vertexptr)
An array of daughter indices making a geometry path.
static TGeoBranchArray * MakeInstanceAt(size_t maxlevel, void *addr)
Make an instance of the class which allocates the node array.
void CopyTo(TGeoBranchArray *dest)
Raw memcpy of the branch array content to an existing destination.
TGeoBranchArray(Int_t level)
Constructor. Allocates the array with a size given by level.
virtual void Fatal(const char *method, const char *msgfmt,...) const
Issue fatal error message.
void UpdateNavigator(TGeoNavigator *nav) const
Update the navigator to reflect the branch.
static void Sort(Int_t n, TGeoBranchArray **array, Int_t *index, Bool_t down=kTRUE)
Sorting of an array of branch array pointers.
virtual Int_t Compare(const TObject *obj) const
Compare with other object of same type.
TGeoVolume * GetVolume() const
TGeoNode * fRealArray[1]
[fMaxLevel+1] Array of nodes
TGeoHMatrix * GetCurrentMatrix() const
const char * Data() const