PandaRoot
PndMvdAccessRTDBTask.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 PNDMVDACCESSRTDBTASK_H
14 #define PNDMVDACCESSRTDBTASK_H
15 
16 #include "FairTask.h"
17 #include "PndSdsPixelDigiPar.h"
18 #include "PndSdsStripDigiPar.h"
19 
20 #include <string>
21 #include <vector>
22 
23 class TClonesArray;
24 
25 class PndMvdAccessRTDBTask : public FairTask {
26  public:
28  PndMvdAccessRTDBTask() : fPixelDigiPar(nullptr), fStripDigiParRect(nullptr), fStripDigiParTrap(nullptr){};
29 
31  virtual ~PndMvdAccessRTDBTask(){};
32 
34 
36 
38  virtual void SetParContainers();
39  virtual InitStatus Init();
40  virtual InitStatus ReInit();
41 
43  virtual void Exec(Option_t *opt);
45  virtual void Finish();
46 
47  private:
48  PndSdsPixelDigiPar *fPixelDigiPar;
49  PndSdsStripDigiPar *fStripDigiParRect;
50  PndSdsStripDigiPar *fStripDigiParTrap;
51 
52  ClassDef(PndMvdAccessRTDBTask, 1);
53 };
54 
55 #endif
virtual InitStatus ReInit()
virtual void Exec(Option_t *opt)
virtual void Finish()
virtual void SetParContainers()
virtual InitStatus Init()
Digitization Parameter Class for MVD-Strip part.
PndMvdAccessRTDBTask & operator=(const PndMvdAccessRTDBTask &)=delete
Digitization Parameter Class for SDS-Pixel part.