PandaRoot
PndDrcAmbiguityInfo.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 // PndDrcLutInfo.h
15 //
16 // Created on: 18.10.2013
17 // Author: R.Dzhygadlo at gsi.de
18 // -----------------------------------------
19 
20 #ifndef PNDDRCAMBIGUITYINFO_H
21 #define PNDDRCAMBIGUITYINFO_H
22 
23 #include "PndDrcAmbiguityInfo.h"
24 
25 #include "TObject.h"
26 #include "TClonesArray.h"
27 #include "TVector3.h"
28 #include <vector>
29 
30 class PndDrcAmbiguityInfo : public TObject {
31 
32  public:
33  // Default constructor
35 
37 
38  // Copy constructor
39  PndDrcAmbiguityInfo(const PndDrcAmbiguityInfo &val) : TObject(), fCherenkov(0.), fBarTime(0.), fEvTime(0.) { *this = val; }
40 
41  // Mutators
42  void SetCherencov(Double_t val) { fCherenkov = val; }
43  void SetBarTime(Double_t val) { fBarTime = val; }
44  void SetEvTime(Double_t val) { fEvTime = val; }
45 
46  // Accessors
47  Double_t GetCherencov() { return fCherenkov; }
48  Double_t GetBarTime() { return fBarTime; }
49  Double_t GetEvTime() { return fEvTime; }
50 
51  protected:
52  Double_t fCherenkov;
53  Double_t fBarTime;
54  Double_t fEvTime;
55 
56  ClassDef(PndDrcAmbiguityInfo, 1)
57 };
58 
59 #endif
PndDrcAmbiguityInfo(const PndDrcAmbiguityInfo &val)
void SetEvTime(Double_t val)
void SetBarTime(Double_t val)
void SetCherencov(Double_t val)