BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/McTruth/include/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
10public:
12 for ( unsigned int index = 0; index < m_size; index++ ) m_data[index] = 0;
13 }
14 virtual ~DecayMode() { ; }
15 void getData( int* data, unsigned int size );
16 void putData( int* data, unsigned int size );
17 virtual const CLID& clID() const { return DecayMode::classID(); }
18 static const CLID& classID() { return CLID_DecayMode; }
19
20private:
21 bool values_ok( unsigned int size );
22
23 static const unsigned int m_size = 10;
24 int m_data[m_size];
25};
26
27#endif // DecayMode_H
TTree * data
const CLID & CLID_DecayMode
void getData(int *data, unsigned int size)
void putData(int *data, unsigned int size)
virtual const CLID & clID() const