Belle II Software development
ROIGeometry.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8
9#pragma once
10
11#include <vxd/geometry/SensorInfoBase.h>
12
13#include <list>
14
15namespace Belle2 {
20 class ROIDetPlane;
21
25
26 public:
30
34
35 std::list<ROIDetPlane> m_planeList;
36
37 void fillPlaneList(double toleranceZ, double tolerancePhi,
39
41 void appendSelectedPlanes(std::list<ROIDetPlane>* selectedPlanes, ROOT::Math::XYZVector recoTrackPosition, int layer);
42
43 };
44
45}
46
ROIDetPlane describes the plane containing a sensor.
Definition ROIDetPlane.h:26
void fillPlaneList(double toleranceZ, double tolerancePhi, const VXD::SensorInfoBase::SensorType det)
fill the list of planes
void appendSelectedPlanes(std::list< ROIDetPlane > *selectedPlanes, ROOT::Math::XYZVector recoTrackPosition, int layer)
Append to selectedPlanes those in the internal list for which a sensor is near the RecoTrack position...
ROIGeometry()
Constructor.
~ROIGeometry()
Destructor.
std::list< ROIDetPlane > m_planeList
list of planes
Definition ROIGeometry.h:35
SensorType
Enum specifying the type of sensor the SensorInfo represents.
Abstract base class for different kinds of events.