BOSS 7.1.2
BESIII Offline Software System
Loading...
Searching...
No Matches
Reconstruction/MdcPatRec/MdcRecoUtil/MdcRecoUtil-00-01-08/src/DecayMode.cxx
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2// File and Version Information:
3// $Id: DecayMode.cxx,v 1.1.1.1 2005/04/21 01:15:12 zhangy Exp $
4//
5//------------------------------------------------------------------------
6//
7// Moved some stuff here from DecayMode.hh to avoid nested includes
8//
11
12#include <iomanip>
13#include <vector>
14using std::ostream;
15using std::setprecision;
16using std::setw;
17using std::vector;
18
19DecayMode::DecayMode(float bf, vector<PdtEntry*> *l ) {
21 _children = l;
22}
23
25 if ( _children ) {
26 //need to destroy also -4602
27 vector<PdtEntry*>::iterator iter=_children->begin();
28 while ( iter != _children->end() ) { delete *iter; ++iter; }
29 _children->clear();
30 }
31 delete _children;
32 _children=0;
33}
34
35void
36DecayMode::printOn(ostream& os) const {
37 os << " " << setw(5) << setprecision(3)
39 << " ->";
40 int l = _children->size();
41 for(int i=0; i<l; i++)
42 os << " " << (*_children)[i]->name();
43 os << '\n';
44}
45
EvtStreamInputIterator< typename Generator::result_type > iter(Generator gen, int N=0)