BOSS 7.0.1
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/McTruth/McTruth-00-02-19/McTruth/DecayMode.h
Go to the documentation of this file.
1#ifndef DecayMode_H
2#define DecayMode_H
3
4#include "GaudiKernel/DataObject.h"
5
6extern const CLID &CLID_DecayMode;
7
8class DecayMode : public DataObject {
9
10 public:
12 {
13 for (unsigned int index=0; index<m_size; index++)
14 m_data[index] = 0;
15 }
16 virtual ~DecayMode() {;}
17 void getData (int* data, unsigned int size);
18 void putData (int* data, unsigned int size);
19 virtual const CLID& clID() const { return DecayMode::classID();}
20 static const CLID& classID() { return CLID_DecayMode; }
21
22 private:
23 bool values_ok(unsigned int size);
24
25 static const unsigned int m_size = 10;
26 int m_data[m_size];
27
28};
29
30#endif //DecayMode_H
TTree * data
const CLID & CLID_DecayMode
Definition: EventModel.cxx:209
const CLID & CLID_DecayMode
Definition: EventModel.cxx:209
void getData(int *data, unsigned int size)
void putData(int *data, unsigned int size)