PandaRoot
PndGemRecoHit2.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 
13 //-----------------------------------------------------------
14 // File and Version Information:
15 // $Id$
16 //
17 // Description:
18 // a planar (x,y) reco hit & its sensor plane
19 //
20 // Environment:
21 // Software developed for the PANDA Detector at FAIR.
22 //
23 // Author List:
24 // Sebastian Neubert TUM (original author)
25 // Ralf Kliemt TUD (application to PndMvd)
26 // Radoslaw Karabowicz MVD (conversion to GEM)
27 // Elisabetta Prencipe, 19/5/2014
28 //-----------------------------------------------------------
29 
31 
34 #ifndef PNDGEMRECOHIT2_H
35 #define PNDGEMRECOHIT2_H
36 
37 // Base Class Headers ----------------
38 #include "PlanarMeasurement.h"
39 #include "AbsMeasurement.h"
40 #include "TrackCandHit.h"
41 // Collaborating Class Headers -------
42 #include <ostream> // remove if you do not need streaming op
43 
44 // Collaborating Class Declarations --
45 class FairMCPoint;
46 class PndGemMCPoint;
47 class PndGemHit;
48 
50  public:
51  // Constructors/Destructors ---------
53 
54  PndGemRecoHit2(PndGemMCPoint *point); // from lab MC points
55  PndGemRecoHit2(PndGemHit *hit, const genfit::TrackCandHit *candHit); // from lab cluster hits
56 
57  virtual ~PndGemRecoHit2();
58 
59  virtual genfit::AbsMeasurement *clone() { return new PndGemRecoHit2(*this); };
60 
61  private:
62  // Private Data Members ------------
63  static const Int_t fNparHitRep = 2; // 3;
64  // PndGemGeoHandling* fGeoH;
65 
66  // Private Methods -----------------
67 
68  // public:
69  ClassDef(PndGemRecoHit2, 1);
70 };
71 
72 #endif
73 
74 //--------------------------------------------------------------
75 // $Log$
76 //--------------------------------------------------------------
virtual ~PndGemRecoHit2()
Measurement class implementing a planar hit geometry (1 or 2D).
virtual genfit::AbsMeasurement * clone()
Hit object for use in TrackCand. Provides IDs and sorting parameters.
Definition: TrackCandHit.h:45
Contains the measurement and covariance in raw detector coordinates.