#include <UtilStrip.h>
Public Member Functions | |
| StripDList (int i) | |
| bool | SetInCluster () |
Public Attributes | |
| unsigned int | TCIndex |
| bool | InCluster |
| unsigned int | ClusterCount |
| double | U |
| double | V |
| double | Z |
| double | PE |
| std::vector< DStrip > | VecDStrip |
Friends | |
| bool | operator< (const StripDList &sdl1, const StripDList &sdl2) |
| bool | operator== (const StripDList &sdl1, const StripDList &sdl2) |
| bool | operator!= (const StripDList &sdl1, const StripDList &sdl2) |
|
|
Definition at line 144 of file UtilStrip.cxx. References ClusterCount, InCluster, TCIndex, U, V, and Z. 00144 {
00145 TCIndex = i;
00146 InCluster = false;
00147 ClusterCount = 0;
00148 U = V = Z = 0.0;
00149 }
|
|
|
Definition at line 151 of file UtilStrip.cxx. References ClusterCount, and InCluster. 00151 {
00152 ClusterCount++;
00153 if(InCluster) return(true);
00154 InCluster = true;
00155 return(false);
00156 }
|
|
||||||||||||
|
Definition at line 168 of file UtilStrip.cxx.
|
|
||||||||||||
|
Definition at line 158 of file UtilStrip.cxx. 00158 {
00159 if(sdl1.VecDStrip.size() == 0 ||
00160 sdl2.VecDStrip.size() == 0) return false;
00161 return(sdl1.VecDStrip[0].Disp < sdl2.VecDStrip[0].Disp);
00162 }
|
|
||||||||||||
|
Definition at line 164 of file UtilStrip.cxx.
|
|
|
Definition at line 110 of file UtilStrip.h. Referenced by SetInCluster(), and StripDList(). |
|
|
Definition at line 109 of file UtilStrip.h. Referenced by SetInCluster(), and StripDList(). |
|
|
Definition at line 114 of file UtilStrip.h. Referenced by StripCluster::AddStripDList(). |
|
|
Definition at line 106 of file UtilStrip.h. Referenced by StripCluster::AddStripDList(), operator!=(), operator==(), and StripDList(). |
|
|
Definition at line 112 of file UtilStrip.h. Referenced by StripCluster::AddStripDList(), and StripDList(). |
|
|
Definition at line 112 of file UtilStrip.h. Referenced by StripCluster::AddStripDList(), and StripDList(). |
|
|
Definition at line 116 of file UtilStrip.h. Referenced by operator<(). |
|
|
Definition at line 112 of file UtilStrip.h. Referenced by StripCluster::AddStripDList(), and StripDList(). |
1.3.9.1