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;
37 void fillPlaneList(double toleranceZ, double tolerancePhi,
41 void appendSelectedPlanes(std::list<ROIDetPlane>* selectedPlanes, ROOT::Math::XYZVector recoTrackPosition, int layer);
42
43 };
45}
46
This class appends the VXDIntercept infos of a track to the list of intercepts.
Definition: ROIGeometry.h:24
void fillPlaneList(double toleranceZ, double tolerancePhi, const VXD::SensorInfoBase::SensorType det)
fill the list of planes
Definition: ROIGeometry.cc:32
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...
Definition: ROIGeometry.cc:72
ROIGeometry()
Constructor.
Definition: ROIGeometry.cc:20
~ROIGeometry()
Destructor.
Definition: ROIGeometry.cc:25
std::list< ROIDetPlane > m_planeList
list of planes
Definition: ROIGeometry.h:35
SensorType
Enum specifing the type of sensor the SensorInfo represents.
Abstract base class for different kinds of events.