PandaRoot
PndTrkLegendreCluster.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
18 #ifndef PNDTRKLEGENDRECLUSTER_H
19 #define PNDTRKLEGENDRECLUSTER_H 1
20 
21 #include "PndTrkCluster.h"
22 
24 
25  public:
27  virtual ~PndTrkLegendreCluster();
29  PndTrkLegendreCluster(const PndTrkCluster &cluster);
31 
32  void SetR(double r) { fR = r; }
33  void SetTheta(double theta) { fTheta = theta; }
34 
35  Double_t GetTheta() { return fTheta; }
36  Double_t GetR() { return fR; }
37  int MergeTo(PndTrkLegendreCluster *cluster2);
38 
39  protected:
40  double fTheta;
41  double fR;
42 
44 };
45 
46 #endif
void SetTheta(double theta)
virtual ~PndTrkLegendreCluster()
int MergeTo(PndTrkLegendreCluster *cluster2)
PndTrkLegendreCluster & operator=(const PndTrkLegendreCluster &cluster)
ClassDef(PndTrkLegendreCluster, 1)