PandaRoot
PndRichDbTask.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 #ifndef PNDRICHDBTASK_H
14 #define PNDRICHDBTASK_H 1
15 
16 #include "FairTask.h"
17 #include "PndRichReco.h"
18 #include "TVector3.h"
19 #include "TH1F.h"
20 #include "TF1.h"
21 #include <vector>
22 
23 class TClonesArray;
24 
25 class PndRichDbTask : public FairTask {
26 
27  public:
29  PndRichDbTask();
30 
33 
35  virtual InitStatus Init();
36 
38  virtual void Exec(Option_t *opt);
39 
41  void SetPersistence(Bool_t persistence) { fPersistence = persistence; }
42 
43  void FinishEvent();
44  void FinishTask();
45 
46  private:
48  Bool_t fPersistence;
49 
50  ClassDef(PndRichDbTask, 1);
51 };
52 
53 #endif
void FinishEvent()
void FinishTask()
void SetPersistence(Bool_t persistence)
Definition: PndRichDbTask.h:41
virtual void Exec(Option_t *opt)
virtual InitStatus Init()