Belle II Software development
SVDCoGOnlyPosition.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 <svd/reconstruction/RawCluster.h>
12#include <svd/reconstruction/SVDClusterPosition.h>
13
14#include <vector>
15
16namespace Belle2::SVD {
17
23
24 public:
25
30 void computeClusterPosition(Belle2::SVD::RawCluster& rawCluster, double& position, double& positionError) override;
31
35 virtual ~SVDCoGOnlyPosition() {};
36
37 private:
38
39
40 };
41
42}
43
Class representing a raw cluster candidate during clustering of the SVD.
Definition: RawCluster.h:33
Abstract Class representing the SVD cluster position.
Derived Class representing the SVD cluster position computed with the CoGOnly algorithm.
virtual ~SVDCoGOnlyPosition()
virtual destructor
void computeClusterPosition(Belle2::SVD::RawCluster &rawCluster, double &position, double &positionError) override
computes the cluster position and position error with the CoG algorithm
Namespace to encapsulate code needed for simulation and reconstrucion of the SVD.
Definition: GeoSVDCreator.h:23