BOSS 7.0.3
BESIII Offline Software System
Loading...
Searching...
No Matches
InsertNew.cxx
Go to the documentation of this file.
1// $Header: /bes/bes/BossCvs/Calibration/rdbModel/src/Tables/InsertNew.cxx,v 1.1.1.1 2005/10/17 06:10:53 maqm Exp $
2
3#include "rdbModel/Tables/Query.h"
4#include "rdbModel/Tables/InsertNew.h"
5#include "rdbModel/Tables/InterRow.h"
6#include "rdbModel/RdbException.h"
7
8namespace rdbModel {
9
11 while (m_interRow.size() ) {
12 InterRow* i = m_interRow.back();
13 m_interRow.pop_back();
14 delete i;
15 }
16 }
17 // Pass the buck to InterRow
19 Visitor::VisitorState state = v->visitInsertNew(this);
20 if (state == Visitor::VBRANCHDONE) return Visitor::VCONTINUE;
21
22 unsigned n = m_interRow.size();
23 for (unsigned i = 0; i < n; i++) {
24 state = m_interRow[i]->accept(v);
25 if (state != Visitor::VCONTINUE) return state;
26 }
27 return state;
28 }
29}
const Int_t n
**********Class see also m_nmax DOUBLE PRECISION m_amel DOUBLE PRECISION m_x2 DOUBLE PRECISION m_alfinv DOUBLE PRECISION m_Xenph INTEGER m_KeyWtm INTEGER m_idyfs DOUBLE PRECISION m_zini DOUBLE PRECISION m_q2 DOUBLE PRECISION m_Wt_KF DOUBLE PRECISION m_WtCut INTEGER m_KFfin *COMMON c_KarLud $ !Input CMS energy[GeV] $ !CMS energy after beam spread beam strahlung[GeV] $ !Beam energy spread[GeV] $ !z boost due to beam spread $ !electron beam mass *ff pair spectrum $ !minimum v
Definition: KarLud.h:35
Visitor::VisitorState accept(Visitor *v)
Definition: InsertNew.cxx:18