LArSoft
v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
|
Class merging clusters: recomputes start and end position and hit list. More...
Public Types | |
using | HitPtr_t = art::Ptr< recob::Hit > |
type of pointer to hits More... | |
using | HitVector_t = std::vector< HitPtr_t > |
vector of pointers to hits More... | |
using | ID_t = recob::Cluster::ID_t |
Type of cluster ID. More... | |
using | ClusterEnds_t = recob::Cluster::ClusterEnds_t |
Public Member Functions | |
ClusterMerger ()=default | |
ClusterMerger (recob::Cluster const &cluster) | |
bool | Add (recob::Cluster const &cluster) |
Merges a single cluster into this object. More... | |
Accessors | |
float | fEndWires [ClusterEnds_t::NEnds] |
Data referring to start and end of the cluster. More... | |
float | fSigmaEndWires [ClusterEnds_t::NEnds] |
Uncertainty on wire coordinate of the start and end of the cluster. More... | |
float | fEndTicks [ClusterEnds_t::NEnds] |
Tick coordinate of the start and end of the cluster. More... | |
float | fSigmaEndTicks [ClusterEnds_t::NEnds] |
Uncertainty on tick coordinate of the start and end of the cluster. More... | |
float | fEndCharges [ClusterEnds_t::NEnds] |
Charge on the start and end wire of the cluster. More... | |
float | fAngles [ClusterEnds_t::NEnds] |
Angle of the start and end of the cluster, defined in [-pi,pi]. More... | |
float | fOpeningAngles [ClusterEnds_t::NEnds] |
Opening angle of the cluster shape at the start and end of the cluster. More... | |
float | fWidth |
A measure of the cluster width, in homogenized units. More... | |
geo::View_t | fView |
View for this cluster. More... | |
geo::PlaneID | fPlaneID |
Location of the start of the cluster. More... | |
unsigned int | n_clusters = 0 |
number of clusters added so far More... | |
float | StartWire () const |
Returns the wire coordinate of the start of the cluster. More... | |
float | StartTick () const |
Returns the tick coordinate of the start of the cluster. More... | |
float | SigmaStartWire () const |
Returns the uncertainty on wire coordinate of the start of the cluster. More... | |
float | SigmaStartTick () const |
Data referring to start and end of the cluster. More... | |
float | EndWire () const |
Returns the wire coordinate of the end of the cluster. More... | |
float | EndTick () const |
Returns the tick coordinate of the end of the cluster. More... | |
float | SigmaEndWire () const |
Returns the uncertainty on wire coordinate of the end of the cluster. More... | |
float | SigmaEndTick () const |
Returns the uncertainty on tick coordinate of the end of the cluster. More... | |
float | WireCoord (ClusterEnds_t side) const |
Returns the wire coordinate of one of the end sides of the cluster. More... | |
float | TickCoord (ClusterEnds_t side) const |
Returns the tick coordinate of one of the end sides of the cluster. More... | |
float | SigmaWireCoord (ClusterEnds_t side) const |
Returns the uncertainty on wire coordinate of one of the end sides of the cluster. More... | |
float | SigmaTickCoord (ClusterEnds_t side) const |
Returns the uncertainty on tick coordinate of one of the end sides of the cluster. More... | |
float | StartCharge () const |
Returns the charge on the first wire of the cluster. More... | |
float | StartAngle () const |
Returns the starting angle of the cluster. More... | |
float | StartOpeningAngle () const |
Returns the opening angle at the start of the cluster. More... | |
float | EndCharge () const |
Returns the charge on the last wire of the cluster. More... | |
float | EndAngle () const |
Returns the ending angle of the cluster. More... | |
float | EndOpeningAngle () const |
Returns the opening angle at the end of the cluster. More... | |
float | EdgeCharge (ClusterEnds_t side) const |
Returns the charge on the first or last wire of the cluster. More... | |
float | Angle (ClusterEnds_t side) const |
Returns the angle at either end of the cluster. More... | |
float | OpeningAngle (ClusterEnds_t side) const |
Returns the opening angle at either end of the cluster. More... | |
float | Width () const |
A measure of the cluster width, in homogenized units. More... | |
geo::View_t | View () const |
Returns the view for this cluster. More... | |
geo::PlaneID | Plane () const |
Returns the plane ID this cluster lies on. More... | |
bool | hasPlane () const |
Returns whether geometry plane is valid. More... | |
void | AdoptEnd (recob::Cluster const &cluster, ClusterEnds_t iEnd) |
Imports all the member of the corresponding end. More... | |
template<typename T > | |
static void | top (T &var, T value) |
Data referring to start and end of the cluster. More... | |
template<typename T > | |
static void | bot (T &var, T value) |
Data referring to start and end of the cluster. More... | |
Class merging clusters: recomputes start and end position and hit list.
Definition at line 90 of file LineMerger_module.cc.
Definition at line 99 of file LineMerger_module.cc.
type of pointer to hits
Definition at line 95 of file LineMerger_module.cc.
using cluster::ClusterMerger::HitVector_t = std::vector<HitPtr_t> |
vector of pointers to hits
Definition at line 96 of file LineMerger_module.cc.
Type of cluster ID.
Definition at line 98 of file LineMerger_module.cc.
|
default |
|
inline |
Definition at line 112 of file LineMerger_module.cc.
bool cluster::ClusterMerger::Add | ( | recob::Cluster const & | cluster | ) |
Merges a single cluster into this object.
cluster | the cluster to be merged |
The two ends of the cluster are merged into this one, that gets extended.
The new cluster must have the same view as the prevopus ones and must lay on the same plane. If the new cluster has invalid plane, the current one is kept; if the current plane is invalid, it is overwritten (that means that if both are invalid, the merged cluster will also have an invalid plane).
Note that this code is crap unless the cluster is track-like.
Definition at line 276 of file LineMerger_module.cc.
References recob::Cluster::EndWire(), recob::Cluster::hasPlane(), recob::Cluster::isValid(), recob::Cluster::Plane(), recob::Cluster::StartWire(), recob::Cluster::View(), and recob::Cluster::Width().
Referenced by cluster::ClusterAndHitMerger::Add().
|
protected |
Imports all the member of the corresponding end.
Definition at line 264 of file LineMerger_module.cc.
References recob::Cluster::Angle(), recob::Cluster::EdgeCharge(), recob::Cluster::OpeningAngle(), recob::Cluster::SigmaTickCoord(), recob::Cluster::SigmaWireCoord(), recob::Cluster::TickCoord(), and recob::Cluster::WireCoord().
Referenced by bot().
|
inline |
Returns the angle at either end of the cluster.
Definition at line 201 of file LineMerger_module.cc.
|
inlinestaticprotected |
Data referring to start and end of the cluster.
Definition at line 260 of file LineMerger_module.cc.
References AdoptEnd(), and fhicl::detail::atom::value().
|
inline |
Returns the charge on the first or last wire of the cluster.
Definition at line 197 of file LineMerger_module.cc.
|
inline |
Returns the ending angle of the cluster.
Definition at line 191 of file LineMerger_module.cc.
|
inline |
Returns the charge on the last wire of the cluster.
Definition at line 188 of file LineMerger_module.cc.
|
inline |
Returns the opening angle at the end of the cluster.
Definition at line 194 of file LineMerger_module.cc.
|
inline |
Returns the tick coordinate of the end of the cluster.
Definition at line 153 of file LineMerger_module.cc.
|
inline |
Returns the wire coordinate of the end of the cluster.
Definition at line 150 of file LineMerger_module.cc.
|
inline |
Returns whether geometry plane is valid.
Definition at line 219 of file LineMerger_module.cc.
|
inline |
Returns the opening angle at either end of the cluster.
Definition at line 205 of file LineMerger_module.cc.
|
inline |
Returns the plane ID this cluster lies on.
Definition at line 216 of file LineMerger_module.cc.
|
inline |
Returns the uncertainty on tick coordinate of the end of the cluster.
Definition at line 159 of file LineMerger_module.cc.
|
inline |
Returns the uncertainty on wire coordinate of the end of the cluster.
Definition at line 156 of file LineMerger_module.cc.
|
inline |
Data referring to start and end of the cluster.
Definition at line 147 of file LineMerger_module.cc.
|
inline |
Returns the uncertainty on wire coordinate of the start of the cluster.
Definition at line 144 of file LineMerger_module.cc.
|
inline |
Returns the uncertainty on tick coordinate of one of the end sides of the cluster.
Definition at line 174 of file LineMerger_module.cc.
|
inline |
Returns the uncertainty on wire coordinate of one of the end sides of the cluster.
Definition at line 170 of file LineMerger_module.cc.
|
inline |
Returns the starting angle of the cluster.
Definition at line 182 of file LineMerger_module.cc.
|
inline |
Returns the charge on the first wire of the cluster.
Definition at line 179 of file LineMerger_module.cc.
|
inline |
Returns the opening angle at the start of the cluster.
Definition at line 185 of file LineMerger_module.cc.
|
inline |
Returns the tick coordinate of the start of the cluster.
Definition at line 141 of file LineMerger_module.cc.
|
inline |
Returns the wire coordinate of the start of the cluster.
Definition at line 138 of file LineMerger_module.cc.
|
inline |
Returns the tick coordinate of one of the end sides of the cluster.
Definition at line 166 of file LineMerger_module.cc.
|
inlinestaticprotected |
Data referring to start and end of the cluster.
Definition at line 258 of file LineMerger_module.cc.
References fhicl::detail::atom::value().
|
inline |
Returns the view for this cluster.
Definition at line 213 of file LineMerger_module.cc.
|
inline |
A measure of the cluster width, in homogenized units.
Definition at line 210 of file LineMerger_module.cc.
|
inline |
Returns the wire coordinate of one of the end sides of the cluster.
Definition at line 162 of file LineMerger_module.cc.
|
protected |
Angle of the start and end of the cluster, defined in [-pi,pi].
Definition at line 240 of file LineMerger_module.cc.
|
protected |
Charge on the start and end wire of the cluster.
Definition at line 237 of file LineMerger_module.cc.
|
protected |
Tick coordinate of the start and end of the cluster.
Definition at line 231 of file LineMerger_module.cc.
|
protected |
Data referring to start and end of the cluster.
Definition at line 225 of file LineMerger_module.cc.
|
protected |
Opening angle of the cluster shape at the start and end of the cluster.
Definition at line 243 of file LineMerger_module.cc.
|
protected |
Location of the start of the cluster.
Definition at line 250 of file LineMerger_module.cc.
|
protected |
Uncertainty on tick coordinate of the start and end of the cluster.
Definition at line 234 of file LineMerger_module.cc.
|
protected |
Uncertainty on wire coordinate of the start and end of the cluster.
Definition at line 228 of file LineMerger_module.cc.
|
protected |
View for this cluster.
Definition at line 248 of file LineMerger_module.cc.
|
protected |
A measure of the cluster width, in homogenized units.
Definition at line 246 of file LineMerger_module.cc.
|
protected |
number of clusters added so far
Definition at line 252 of file LineMerger_module.cc.