Belle II Software  release-05-01-25
PXDClusterShape.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2010 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Peter Kodys *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #ifndef PXDCLUSTERSHAPE_H
12 #define PXDCLUSTERSHAPE_H
13 
14 #include <pxd/reconstruction/ClusterCandidate.h>
15 
16 namespace Belle2 {
21  namespace PXD {
22 
24  enum class pxdClusterShapeType {
25  no_shape_set = 0,
26 
27  shape_1,
28  shape_2_u,
29  shape_2_v,
30  shape_2_uv_diag,
31  shape_2_uv_antidiag,
32  shape_N1,
33  shape_1M,
34  shape_N2,
35  shape_2M,
36  shape_4,
37  shape_3_L,
38  shape_3_L_mirr_u,
39  shape_3_L_mirr_v,
40  shape_3_L_mirr_uv,
41  shape_large
42 
43  };
44 
46  typedef std::map<pxdClusterShapeType, std::string> pxdClusterShapeDescr;
47 
85  class PXDClusterShape {
86  public:
87 
90 
93 
100 
101  private:
102 
103  };
104 
105  }
106 
108 }
109 
110 #endif //PXDCLUSTERSHAPE_H
Belle2::VxdID
Class to uniquely identify a any structure of the PXD and SVD.
Definition: VxdID.h:43
Belle2::PXD::ClusterCandidate
Class representing a possible cluster during clustering of the PXD It supports merging of different c...
Definition: ClusterCandidate.h:41
Belle2::PXD::PXDClusterShape::setClsShape
pxdClusterShapeType setClsShape(const ClusterCandidate &cls, VxdID sensorID)
Set cluster shape ID.
Definition: PXDClusterShape.cc:53
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::PXD::PXDClusterShape::pxdClusterShapeDescription
static pxdClusterShapeDescr pxdClusterShapeDescription
Create detail description of cluster shape.
Definition: PXDClusterShape.h:100
Belle2::PXD::PXDClusterShape
Class to correct estimation of cluster error and position base on its shape.
Definition: PXDClusterShape.h:93
Belle2::PXD::pxdClusterShapeDescr
std::map< pxdClusterShapeType, std::string > pxdClusterShapeDescr
Type specifies cluster shape type description.
Definition: PXDClusterShape.h:54
Belle2::PXD::PXDClusterShape::~PXDClusterShape
~PXDClusterShape()
Delete the cache and free the memory.
Definition: PXDClusterShape.cc:49
Belle2::PXD::pxdClusterShapeType
pxdClusterShapeType
Type specifies cluster shape type.
Definition: PXDClusterShape.h:32