PandaRoot
PndSdsClusterPixel.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  * PndSdsClusterPixel.h
15  *
16  * Created on: Dec 15, 2009
17  * Author: stockmanns, kliemt, michel
18  */
19 
20 #ifndef PNDSDSCLUSTERPIXEL_H_
21 #define PNDSDSCLUSTERPIXEL_H_
22 
23 #include "PndSdsCluster.h"
24 
26  public:
28  PndSdsClusterPixel(Int_t DigiType, std::vector<Int_t> list, Int_t fileId = -1, Int_t evtId = -1) { SetClusterList(DigiType, list, fileId, evtId); };
29  virtual ~PndSdsClusterPixel();
30 
31  void SetClusterList(Int_t DigiType, std::vector<Int_t> list, Int_t fileId, Int_t evtId)
32  {
33  fClusterList = list;
34  SetLinks(FairMultiLinkedData(DigiType, list, fileId, evtId));
35  }
36 
38 };
39 
40 #endif /* PNDSDSCLUSTERPixel_H_ */
virtual ~PndSdsClusterPixel()
Class to store the Digis which belong to one cluster This class holds the information which Digi belo...
Definition: PndSdsCluster.h:30
void SetClusterList(Int_t DigiType, std::vector< Int_t > list, Int_t fileId, Int_t evtId)
PndSdsClusterPixel(Int_t DigiType, std::vector< Int_t > list, Int_t fileId=-1, Int_t evtId=-1)
ClassDef(PndSdsClusterPixel, 1)
std::vector< Int_t > fClusterList
Definition: PndSdsCluster.h:58