PandaRoot
PndHypGeGammaAnaStorage.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 
15 Storage of Data collected during HypGe Gamma Analysis Task created by M.Steinen steinen@kph.uni-mainz.de
16 Storage of Analysis of Gamma Simulation with hypGe detectors
17 *******************************************************/
18 
19 #ifndef PNDHYPGEGAMMAANASTORAGE_H
20 #define PNDHYPGEGAMMAANASTORAGE_H
21 
22 #include <TNamed.h>
23 
24 class PndHypGeGammaAnaStorage : public TNamed {
25  public:
27  PndHypGeGammaAnaStorage(const TString &name, const TString &title) : TNamed(name, title){};
28  virtual ~PndHypGeGammaAnaStorage();
29 
30  void SetAllEntries(Int_t Entries);
31  Int_t GetAllEntries();
32 
33  void SetSumPeak(Int_t SumPeak_Ext);
34  Int_t GetSumPeak();
35 
36  void SetInFile(TString inFile_Ext);
37  TString GetInFile();
38 
39  protected:
40  Int_t AllEntries;
41  Int_t SumPeak;
42  TString InFile;
43 
45 };
46 
47 #endif /* PNDHYPGEGAMMAANASTORAGE_H */
void SetSumPeak(Int_t SumPeak_Ext)
PndHypGeGammaAnaStorage(const TString &name, const TString &title)
void SetInFile(TString inFile_Ext)
ClassDef(PndHypGeGammaAnaStorage, 1)
void SetAllEntries(Int_t Entries)
virtual ~PndHypGeGammaAnaStorage()