|
[Rivet-svn] r1684 - trunk/pyextblackhole at projects.hepforge.org blackhole at projects.hepforge.orgTue Jul 14 15:18:03 BST 2009
Author: buckley Date: Tue Jul 14 15:18:00 2009 New Revision: 1684 Log: Adding HepMC 2.3.x versions of the Python wrapper files Added: trunk/pyext/rivet.py-HepMC23 trunk/pyext/rivet_wrap.cc-HepMC23 Modified: trunk/pyext/Makefile.am Modified: trunk/pyext/Makefile.am ============================================================================== --- trunk/pyext/Makefile.am Tue Jul 14 15:07:13 2009 (r1683) +++ trunk/pyext/Makefile.am Tue Jul 14 15:18:00 2009 (r1684) @@ -1,12 +1,13 @@ EXTRA_DIST = rivet.i ez_setup.py ## Bundling SWIG-built sources with the tarball for SL4 compat -EXTRA_DIST += rivet_wrap.cc-HepMC24 rivet.py-HepMC24 \ +EXTRA_DIST += rivet_wrap.cc-HepMC23 rivet.py-HepMC23 \ + rivet_wrap.cc-HepMC24 rivet.py-HepMC24 \ rivet_wrap.cc-HepMC25 rivet.py-HepMC25 rivet_wrap.cc rivet.py: rivet.i - @cp rivet_wrap.cc-HepMC$(HEPMC_VERSION) rivet_wrap.cc - @cp rivet.py-HepMC$(HEPMC_VERSION) rivet.py - if test ! -e rivet_wrap.cc; then \ + if test -e rivet_wrap.cc-HepMC$(HEPMC_VERSION); then cp rivet_wrap.cc-HepMC$(HEPMC_VERSION) rivet_wrap.cc; fi + if test -e rivet.py-HepMC$(HEPMC_VERSION); then cp rivet.py-HepMC$(HEPMC_VERSION) rivet.py; fi + if test ! -e rivet_wrap.cc -o ! -e rivet.py; then \ rm -f rivet_wrap.cc rivet.py; \ swig -c++ -python -I$(HEPMCINCPATH) -I$(top_srcdir)/include -o rivet_wrap.cc $<; \ fi Added: trunk/pyext/rivet.py-HepMC23 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/pyext/rivet.py-HepMC23 Tue Jul 14 15:18:00 2009 (r1684) @@ -0,0 +1,942 @@ +# This file was automatically generated by SWIG (http://www.swig.org). +# Version 1.3.33 +# +# Don't modify this file, modify the SWIG interface instead. +# This file is compatible with both classic and new-style classes. + +import _rivet +import new +new_instancemethod = new.instancemethod +try: + _swig_property = property +except NameError: + pass # Python < 2.2 doesn't have 'property'. +def _swig_setattr_nondynamic(self,class_type,name,value,static=1): + if (name == "thisown"): return self.this.own(value) + if (name == "this"): + if type(value).__name__ == 'PySwigObject': + self.__dict__[name] = value + return + method = class_type.__swig_setmethods__.get(name,None) + if method: return method(self,value) + if (not static) or hasattr(self,name): + self.__dict__[name] = value + else: + raise AttributeError("You cannot add attributes to %s" % self) + +def _swig_setattr(self,class_type,name,value): + return _swig_setattr_nondynamic(self,class_type,name,value,0) + +def _swig_getattr(self,class_type,name): + if (name == "thisown"): return self.this.own() + method = class_type.__swig_getmethods__.get(name,None) + if method: return method(self) + raise AttributeError,name + +def _swig_repr(self): + try: strthis = "proxy of " + self.this.__repr__() + except: strthis = "" + return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) + +import types +try: + _object = types.ObjectType + _newclass = 1 +except AttributeError: + class _object : pass + _newclass = 0 +del types + + +class PySwigIterator(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, PySwigIterator, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, PySwigIterator, name) + def __init__(self): raise AttributeError, "No constructor defined" + __repr__ = _swig_repr + __swig_destroy__ = _rivet.delete_PySwigIterator + __del__ = lambda self : None; + def value(*args): return _rivet.PySwigIterator_value(*args) + def incr(*args): return _rivet.PySwigIterator_incr(*args) + def decr(*args): return _rivet.PySwigIterator_decr(*args) + def distance(*args): return _rivet.PySwigIterator_distance(*args) + def equal(*args): return _rivet.PySwigIterator_equal(*args) + def copy(*args): return _rivet.PySwigIterator_copy(*args) + def next(*args): return _rivet.PySwigIterator_next(*args) + def previous(*args): return _rivet.PySwigIterator_previous(*args) + def advance(*args): return _rivet.PySwigIterator_advance(*args) + def __eq__(*args): return _rivet.PySwigIterator___eq__(*args) + def __ne__(*args): return _rivet.PySwigIterator___ne__(*args) + def __iadd__(*args): return _rivet.PySwigIterator___iadd__(*args) + def __isub__(*args): return _rivet.PySwigIterator___isub__(*args) + def __add__(*args): return _rivet.PySwigIterator___add__(*args) + def __sub__(*args): return _rivet.PySwigIterator___sub__(*args) + def __iter__(self): return self +PySwigIterator_swigregister = _rivet.PySwigIterator_swigregister +PySwigIterator_swigregister(PySwigIterator) + +class FourVector(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, FourVector, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, FourVector, name) + __repr__ = _swig_repr + def __init__(self, *args): + this = _rivet.new_FourVector(*args) + try: self.this.append(this) + except: self.this = this + def swap(*args): return _rivet.FourVector_swap(*args) + def px(*args): return _rivet.FourVector_px(*args) + def py(*args): return _rivet.FourVector_py(*args) + def pz(*args): return _rivet.FourVector_pz(*args) + def e(*args): return _rivet.FourVector_e(*args) + def x(*args): return _rivet.FourVector_x(*args) + def y(*args): return _rivet.FourVector_y(*args) + def z(*args): return _rivet.FourVector_z(*args) + def t(*args): return _rivet.FourVector_t(*args) + def m2(*args): return _rivet.FourVector_m2(*args) + def m(*args): return _rivet.FourVector_m(*args) + def perp2(*args): return _rivet.FourVector_perp2(*args) + def perp(*args): return _rivet.FourVector_perp(*args) + def mag(*args): return _rivet.FourVector_mag(*args) + def theta(*args): return _rivet.FourVector_theta(*args) + def phi(*args): return _rivet.FourVector_phi(*args) + def rho(*args): return _rivet.FourVector_rho(*args) + def __eq__(*args): return _rivet.FourVector___eq__(*args) + def __ne__(*args): return _rivet.FourVector___ne__(*args) + def pseudoRapidity(*args): return _rivet.FourVector_pseudoRapidity(*args) + def eta(*args): return _rivet.FourVector_eta(*args) + def set(*args): return _rivet.FourVector_set(*args) + def setX(*args): return _rivet.FourVector_setX(*args) + def setY(*args): return _rivet.FourVector_setY(*args) + def setZ(*args): return _rivet.FourVector_setZ(*args) + def setT(*args): return _rivet.FourVector_setT(*args) + def setPx(*args): return _rivet.FourVector_setPx(*args) + def setPy(*args): return _rivet.FourVector_setPy(*args) + def setPz(*args): return _rivet.FourVector_setPz(*args) + def setE(*args): return _rivet.FourVector_setE(*args) + def __str__(*args): return _rivet.FourVector___str__(*args) + __swig_destroy__ = _rivet.delete_FourVector + __del__ = lambda self : None; +FourVector_swigregister = _rivet.FourVector_swigregister +FourVector_swigregister(FourVector) + +class ThreeVector(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, ThreeVector, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, ThreeVector, name) + __repr__ = _swig_repr + def __init__(self, *args): + this = _rivet.new_ThreeVector(*args) + try: self.this.append(this) + except: self.this = this + def swap(*args): return _rivet.ThreeVector_swap(*args) + def x(*args): return _rivet.ThreeVector_x(*args) + def y(*args): return _rivet.ThreeVector_y(*args) + def z(*args): return _rivet.ThreeVector_z(*args) + def setX(*args): return _rivet.ThreeVector_setX(*args) + def setY(*args): return _rivet.ThreeVector_setY(*args) + def setZ(*args): return _rivet.ThreeVector_setZ(*args) + def set(*args): return _rivet.ThreeVector_set(*args) + def phi(*args): return _rivet.ThreeVector_phi(*args) + def theta(*args): return _rivet.ThreeVector_theta(*args) + def r(*args): return _rivet.ThreeVector_r(*args) + def mag(*args): return _rivet.ThreeVector_mag(*args) + def setPhi(*args): return _rivet.ThreeVector_setPhi(*args) + def setTheta(*args): return _rivet.ThreeVector_setTheta(*args) + def perp2(*args): return _rivet.ThreeVector_perp2(*args) + def perp(*args): return _rivet.ThreeVector_perp(*args) + def __eq__(*args): return _rivet.ThreeVector___eq__(*args) + def __ne__(*args): return _rivet.ThreeVector___ne__(*args) + __swig_destroy__ = _rivet.delete_ThreeVector + __del__ = lambda self : None; +ThreeVector_swigregister = _rivet.ThreeVector_swigregister +ThreeVector_swigregister(ThreeVector) + +class GenEvent(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, GenEvent, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, GenEvent, name) + __repr__ = _swig_repr + def __init__(self, *args): + this = _rivet.new_GenEvent(*args) + try: self.this.append(this) + except: self.this = this + __swig_destroy__ = _rivet.delete_GenEvent + __del__ = lambda self : None; + def swap(*args): return _rivet.GenEvent_swap(*args) + def as_str(*args): return _rivet.GenEvent_as_str(*args) + def print_version(*args): return _rivet.GenEvent_print_version(*args) + def barcode_to_particle(*args): return _rivet.GenEvent_barcode_to_particle(*args) + def barcode_to_vertex(*args): return _rivet.GenEvent_barcode_to_vertex(*args) + def signal_process_id(*args): return _rivet.GenEvent_signal_process_id(*args) + def event_number(*args): return _rivet.GenEvent_event_number(*args) + def mpi(*args): return _rivet.GenEvent_mpi(*args) + def event_scale(*args): return _rivet.GenEvent_event_scale(*args) + def alphaQCD(*args): return _rivet.GenEvent_alphaQCD(*args) + def alphaQED(*args): return _rivet.GenEvent_alphaQED(*args) + def signal_process_vertex(*args): return _rivet.GenEvent_signal_process_vertex(*args) + def valid_beam_particles(*args): return _rivet.GenEvent_valid_beam_particles(*args) + def beam_particles(*args): return _rivet.GenEvent_beam_particles(*args) + def weights(*args): return _rivet.GenEvent_weights(*args) + def heavy_ion(*args): return _rivet.GenEvent_heavy_ion(*args) + def pdf_info(*args): return _rivet.GenEvent_pdf_info(*args) + def random_states(*args): return _rivet.GenEvent_random_states(*args) + def set_signal_process_id(*args): return _rivet.GenEvent_set_signal_process_id(*args) + def set_event_number(*args): return _rivet.GenEvent_set_event_number(*args) + def set_mpi(*args): return _rivet.GenEvent_set_mpi(*args) + def set_event_scale(*args): return _rivet.GenEvent_set_event_scale(*args) + def set_alphaQCD(*args): return _rivet.GenEvent_set_alphaQCD(*args) + def set_alphaQED(*args): return _rivet.GenEvent_set_alphaQED(*args) + def set_signal_process_vertex(*args): return _rivet.GenEvent_set_signal_process_vertex(*args) + def set_beam_particles(*args): return _rivet.GenEvent_set_beam_particles(*args) + def set_random_states(*args): return _rivet.GenEvent_set_random_states(*args) + def set_heavy_ion(*args): return _rivet.GenEvent_set_heavy_ion(*args) + def set_pdf_info(*args): return _rivet.GenEvent_set_pdf_info(*args) + def particles_size(*args): return _rivet.GenEvent_particles_size(*args) + def particles_empty(*args): return _rivet.GenEvent_particles_empty(*args) + def vertices_size(*args): return _rivet.GenEvent_vertices_size(*args) + def vertices_empty(*args): return _rivet.GenEvent_vertices_empty(*args) + def add_vertex(*args): return _rivet.GenEvent_add_vertex(*args) + def remove_vertex(*args): return _rivet.GenEvent_remove_vertex(*args) + def clear(*args): return _rivet.GenEvent_clear(*args) + def __str__(*args): return _rivet.GenEvent___str__(*args) + def summary(*args): return _rivet.GenEvent_summary(*args) + def particles(*args): return _rivet.GenEvent_particles(*args) + def vertices(*args): return _rivet.GenEvent_vertices(*args) + def fsParticles(*args): return _rivet.GenEvent_fsParticles(*args) +GenEvent_swigregister = _rivet.GenEvent_swigregister +GenEvent_swigregister(GenEvent) + +class GenParticle(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, GenParticle, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, GenParticle, name) + __repr__ = _swig_repr + def __init__(self, *args): + this = _rivet.new_GenParticle(*args) + try: self.this.append(this) + except: self.this = this + __swig_destroy__ = _rivet.delete_GenParticle + __del__ = lambda self : None; + def swap(*args): return _rivet.GenParticle_swap(*args) + def __eq__(*args): return _rivet.GenParticle___eq__(*args) + def __ne__(*args): return _rivet.GenParticle___ne__(*args) + def to_vec4(*args): return _rivet.GenParticle_to_vec4(*args) + def momentum(*args): return _rivet.GenParticle_momentum(*args) + def pdg_id(*args): return _rivet.GenParticle_pdg_id(*args) + def status(*args): return _rivet.GenParticle_status(*args) + def flow(*args): return _rivet.GenParticle_flow(*args) + def polarization(*args): return _rivet.GenParticle_polarization(*args) + def production_vertex(*args): return _rivet.GenParticle_production_vertex(*args) + def end_vertex(*args): return _rivet.GenParticle_end_vertex(*args) + def parent_event(*args): return _rivet.GenParticle_parent_event(*args) + def generated_mass(*args): return _rivet.GenParticle_generated_mass(*args) + def generatedMass(*args): return _rivet.GenParticle_generatedMass(*args) + def barcode(*args): return _rivet.GenParticle_barcode(*args) + def suggest_barcode(*args): return _rivet.GenParticle_suggest_barcode(*args) + def set_momentum(*args): return _rivet.GenParticle_set_momentum(*args) + def set_pdg_id(*args): return _rivet.GenParticle_set_pdg_id(*args) + def set_status(*args): return _rivet.GenParticle_set_status(*args) + def set_flow(*args): return _rivet.GenParticle_set_flow(*args) + def set_polarization(*args): return _rivet.GenParticle_set_polarization(*args) + def set_generated_mass(*args): return _rivet.GenParticle_set_generated_mass(*args) + def setGeneratedMass(*args): return _rivet.GenParticle_setGeneratedMass(*args) + def __str__(*args): return _rivet.GenParticle___str__(*args) +GenParticle_swigregister = _rivet.GenParticle_swigregister +GenParticle_swigregister(GenParticle) + +parents = _rivet.parents +children = _rivet.children +family = _rivet.family +ancestors = _rivet.ancestors +descendants = _rivet.descendants +relatives = _rivet.relatives +class GenVertex(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, GenVertex, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, GenVertex, name) + __repr__ = _swig_repr + def __init__(self, *args): + this = _rivet.new_GenVertex(*args) + try: self.this.append(this) + except: self.this = this + __swig_destroy__ = _rivet.delete_GenVertex + __del__ = lambda self : None; + def swap(*args): return _rivet.GenVertex_swap(*args) + def __eq__(*args): return _rivet.GenVertex___eq__(*args) + def __ne__(*args): return _rivet.GenVertex___ne__(*args) + def check_momentum_conservation(*args): return _rivet.GenVertex_check_momentum_conservation(*args) + def add_particle_in(*args): return _rivet.GenVertex_add_particle_in(*args) + def add_particle_out(*args): return _rivet.GenVertex_add_particle_out(*args) + def remove_particle(*args): return _rivet.GenVertex_remove_particle(*args) + def to_vec4(*args): return _rivet.GenVertex_to_vec4(*args) + def to_vec3(*args): return _rivet.GenVertex_to_vec3(*args) + def parent_event(*args): return _rivet.GenVertex_parent_event(*args) + def point3d(*args): return _rivet.GenVertex_point3d(*args) + def position(*args): return _rivet.GenVertex_position(*args) + def set_position(*args): return _rivet.GenVertex_set_position(*args) + def id(*args): return _rivet.GenVertex_id(*args) + def set_id(*args): return _rivet.GenVertex_set_id(*args) + def barcode(*args): return _rivet.GenVertex_barcode(*args) + def suggest_barcode(*args): return _rivet.GenVertex_suggest_barcode(*args) + def weights(*args): return _rivet.GenVertex_weights(*args) + def particles_in_size(*args): return _rivet.GenVertex_particles_in_size(*args) + def particles_out_size(*args): return _rivet.GenVertex_particles_out_size(*args) + def __str__(*args): return _rivet.GenVertex___str__(*args) + def particles_in(*args): return _rivet.GenVertex_particles_in(*args) + def particles_out(*args): return _rivet.GenVertex_particles_out(*args) + def particles(*args): return _rivet.GenVertex_particles(*args) + def vertices(*args): return _rivet.GenVertex_vertices(*args) +GenVertex_swigregister = _rivet.GenVertex_swigregister +GenVertex_swigregister(GenVertex) + +class IO_BaseClass(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, IO_BaseClass, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, IO_BaseClass, name) + def __init__(self): raise AttributeError, "No constructor defined" + __repr__ = _swig_repr + __swig_destroy__ = _rivet.delete_IO_BaseClass + __del__ = lambda self : None; + def write_event(*args): return _rivet.IO_BaseClass_write_event(*args) + def fill_next_event(*args): return _rivet.IO_BaseClass_fill_next_event(*args) + def write_particle_data_table(*args): return _rivet.IO_BaseClass_write_particle_data_table(*args) + def fill_particle_data_table(*args): return _rivet.IO_BaseClass_fill_particle_data_table(*args) + def read_next_event(*args): return _rivet.IO_BaseClass_read_next_event(*args) + def read_particle_data_table(*args): return _rivet.IO_BaseClass_read_particle_data_table(*args) + def __rshift__(*args): return _rivet.IO_BaseClass___rshift__(*args) +IO_BaseClass_swigregister = _rivet.IO_BaseClass_swigregister +IO_BaseClass_swigregister(IO_BaseClass) + +class IO_GenEvent(IO_BaseClass): + __swig_setmethods__ = {} + for _s in [IO_BaseClass]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) + __setattr__ = lambda self, name, value: _swig_setattr(self, IO_GenEvent, name, value) + __swig_getmethods__ = {} + for _s in [IO_BaseClass]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) + __getattr__ = lambda self, name: _swig_getattr(self, IO_GenEvent, name) + __repr__ = _swig_repr + __swig_destroy__ = _rivet.delete_IO_GenEvent + __del__ = lambda self : None; + def write_event(*args): return _rivet.IO_GenEvent_write_event(*args) + def fill_next_event(*args): return _rivet.IO_GenEvent_fill_next_event(*args) + def write_particle_data_table(*args): return _rivet.IO_GenEvent_write_particle_data_table(*args) + def fill_particle_data_table(*args): return _rivet.IO_GenEvent_fill_particle_data_table(*args) + def write_comment(*args): return _rivet.IO_GenEvent_write_comment(*args) + def rdstate(*args): return _rivet.IO_GenEvent_rdstate(*args) + def clear(*args): return _rivet.IO_GenEvent_clear(*args) + def __init__(self, *args): + this = _rivet.new_IO_GenEvent(*args) + try: self.this.append(this) + except: self.this = this + def get_next_event(*args): return _rivet.IO_GenEvent_get_next_event(*args) +IO_GenEvent_swigregister = _rivet.IO_GenEvent_swigregister +IO_GenEvent_swigregister(IO_GenEvent) + +class GenParticleVector(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, GenParticleVector, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, GenParticleVector, name) + __repr__ = _swig_repr + def iterator(*args): return _rivet.GenParticleVector_iterator(*args) + def __iter__(self): return self.iterator() + def __nonzero__(*args): return _rivet.GenParticleVector___nonzero__(*args) + def __len__(*args): return _rivet.GenParticleVector___len__(*args) + def pop(*args): return _rivet.GenParticleVector_pop(*args) + def __getslice__(*args): return _rivet.GenParticleVector___getslice__(*args) + def __setslice__(*args): return _rivet.GenParticleVector___setslice__(*args) + def __delslice__(*args): return _rivet.GenParticleVector___delslice__(*args) + def __delitem__(*args): return _rivet.GenParticleVector___delitem__(*args) + def __getitem__(*args): return _rivet.GenParticleVector___getitem__(*args) + def __setitem__(*args): return _rivet.GenParticleVector___setitem__(*args) + def append(*args): return _rivet.GenParticleVector_append(*args) + def empty(*args): return _rivet.GenParticleVector_empty(*args) + def size(*args): return _rivet.GenParticleVector_size(*args) + def clear(*args): return _rivet.GenParticleVector_clear(*args) + def swap(*args): return _rivet.GenParticleVector_swap(*args) + def get_allocator(*args): return _rivet.GenParticleVector_get_allocator(*args) + def begin(*args): return _rivet.GenParticleVector_begin(*args) + def end(*args): return _rivet.GenParticleVector_end(*args) + def rbegin(*args): return _rivet.GenParticleVector_rbegin(*args) + def rend(*args): return _rivet.GenParticleVector_rend(*args) + def pop_back(*args): return _rivet.GenParticleVector_pop_back(*args) + def erase(*args): return _rivet.GenParticleVector_erase(*args) + def __init__(self, *args): + this = _rivet.new_GenParticleVector(*args) + try: self.this.append(this) + except: self.this = this + def push_back(*args): return _rivet.GenParticleVector_push_back(*args) + def front(*args): return _rivet.GenParticleVector_front(*args) + def back(*args): return _rivet.GenParticleVector_back(*args) + def assign(*args): return _rivet.GenParticleVector_assign(*args) + def resize(*args): return _rivet.GenParticleVector_resize(*args) + def insert(*args): return _rivet.GenParticleVector_insert(*args) + def reserve(*args): return _rivet.GenParticleVector_reserve(*args) + def capacity(*args): return _rivet.GenParticleVector_capacity(*args) + __swig_destroy__ = _rivet.delete_GenParticleVector + __del__ = lambda self : None; +GenParticleVector_swigregister = _rivet.GenParticleVector_swigregister +GenParticleVector_swigregister(GenParticleVector) + +class cGenParticleVector(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, cGenParticleVector, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, cGenParticleVector, name) + __repr__ = _swig_repr + def iterator(*args): return _rivet.cGenParticleVector_iterator(*args) + def __iter__(self): return self.iterator() + def __nonzero__(*args): return _rivet.cGenParticleVector___nonzero__(*args) + def __len__(*args): return _rivet.cGenParticleVector___len__(*args) + def pop(*args): return _rivet.cGenParticleVector_pop(*args) + def __getslice__(*args): return _rivet.cGenParticleVector___getslice__(*args) + def __setslice__(*args): return _rivet.cGenParticleVector___setslice__(*args) + def __delslice__(*args): return _rivet.cGenParticleVector___delslice__(*args) + def __delitem__(*args): return _rivet.cGenParticleVector___delitem__(*args) + def __getitem__(*args): return _rivet.cGenParticleVector___getitem__(*args) + def __setitem__(*args): return _rivet.cGenParticleVector___setitem__(*args) + def append(*args): return _rivet.cGenParticleVector_append(*args) + def empty(*args): return _rivet.cGenParticleVector_empty(*args) + def size(*args): return _rivet.cGenParticleVector_size(*args) + def clear(*args): return _rivet.cGenParticleVector_clear(*args) + def swap(*args): return _rivet.cGenParticleVector_swap(*args) + def get_allocator(*args): return _rivet.cGenParticleVector_get_allocator(*args) + def begin(*args): return _rivet.cGenParticleVector_begin(*args) + def end(*args): return _rivet.cGenParticleVector_end(*args) + def rbegin(*args): return _rivet.cGenParticleVector_rbegin(*args) + def rend(*args): return _rivet.cGenParticleVector_rend(*args) + def pop_back(*args): return _rivet.cGenParticleVector_pop_back(*args) + def erase(*args): return _rivet.cGenParticleVector_erase(*args) + def __init__(self, *args): + this = _rivet.new_cGenParticleVector(*args) + try: self.this.append(this) + except: self.this = this + def push_back(*args): return _rivet.cGenParticleVector_push_back(*args) + def front(*args): return _rivet.cGenParticleVector_front(*args) + def back(*args): return _rivet.cGenParticleVector_back(*args) + def assign(*args): return _rivet.cGenParticleVector_assign(*args) + def resize(*args): return _rivet.cGenParticleVector_resize(*args) + def insert(*args): return _rivet.cGenParticleVector_insert(*args) + def reserve(*args): return _rivet.cGenParticleVector_reserve(*args) + def capacity(*args): return _rivet.cGenParticleVector_capacity(*args) + __swig_destroy__ = _rivet.delete_cGenParticleVector + __del__ = lambda self : None; +cGenParticleVector_swigregister = _rivet.cGenParticleVector_swigregister +cGenParticleVector_swigregister(cGenParticleVector) + +class GenVertexVector(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, GenVertexVector, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, GenVertexVector, name) + __repr__ = _swig_repr + def iterator(*args): return _rivet.GenVertexVector_iterator(*args) + def __iter__(self): return self.iterator() + def __nonzero__(*args): return _rivet.GenVertexVector___nonzero__(*args) + def __len__(*args): return _rivet.GenVertexVector___len__(*args) + def pop(*args): return _rivet.GenVertexVector_pop(*args) + def __getslice__(*args): return _rivet.GenVertexVector___getslice__(*args) + def __setslice__(*args): return _rivet.GenVertexVector___setslice__(*args) + def __delslice__(*args): return _rivet.GenVertexVector___delslice__(*args) + def __delitem__(*args): return _rivet.GenVertexVector___delitem__(*args) + def __getitem__(*args): return _rivet.GenVertexVector___getitem__(*args) + def __setitem__(*args): return _rivet.GenVertexVector___setitem__(*args) + def append(*args): return _rivet.GenVertexVector_append(*args) + def empty(*args): return _rivet.GenVertexVector_empty(*args) + def size(*args): return _rivet.GenVertexVector_size(*args) + def clear(*args): return _rivet.GenVertexVector_clear(*args) + def swap(*args): return _rivet.GenVertexVector_swap(*args) + def get_allocator(*args): return _rivet.GenVertexVector_get_allocator(*args) + def begin(*args): return _rivet.GenVertexVector_begin(*args) + def end(*args): return _rivet.GenVertexVector_end(*args) + def rbegin(*args): return _rivet.GenVertexVector_rbegin(*args) + def rend(*args): return _rivet.GenVertexVector_rend(*args) + def pop_back(*args): return _rivet.GenVertexVector_pop_back(*args) + def erase(*args): return _rivet.GenVertexVector_erase(*args) + def __init__(self, *args): + this = _rivet.new_GenVertexVector(*args) + try: self.this.append(this) + except: self.this = this + def push_back(*args): return _rivet.GenVertexVector_push_back(*args) + def front(*args): return _rivet.GenVertexVector_front(*args) + def back(*args): return _rivet.GenVertexVector_back(*args) + def assign(*args): return _rivet.GenVertexVector_assign(*args) + def resize(*args): return _rivet.GenVertexVector_resize(*args) + def insert(*args): return _rivet.GenVertexVector_insert(*args) + def reserve(*args): return _rivet.GenVertexVector_reserve(*args) + def capacity(*args): return _rivet.GenVertexVector_capacity(*args) + __swig_destroy__ = _rivet.delete_GenVertexVector + __del__ = lambda self : None; +GenVertexVector_swigregister = _rivet.GenVertexVector_swigregister +GenVertexVector_swigregister(GenVertexVector) + +class cGenVertexVector(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, cGenVertexVector, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, cGenVertexVector, name) + __repr__ = _swig_repr + def iterator(*args): return _rivet.cGenVertexVector_iterator(*args) + def __iter__(self): return self.iterator() + def __nonzero__(*args): return _rivet.cGenVertexVector___nonzero__(*args) + def __len__(*args): return _rivet.cGenVertexVector___len__(*args) + def pop(*args): return _rivet.cGenVertexVector_pop(*args) + def __getslice__(*args): return _rivet.cGenVertexVector___getslice__(*args) + def __setslice__(*args): return _rivet.cGenVertexVector___setslice__(*args) + def __delslice__(*args): return _rivet.cGenVertexVector___delslice__(*args) + def __delitem__(*args): return _rivet.cGenVertexVector___delitem__(*args) + def __getitem__(*args): return _rivet.cGenVertexVector___getitem__(*args) + def __setitem__(*args): return _rivet.cGenVertexVector___setitem__(*args) + def append(*args): return _rivet.cGenVertexVector_append(*args) + def empty(*args): return _rivet.cGenVertexVector_empty(*args) + def size(*args): return _rivet.cGenVertexVector_size(*args) + def clear(*args): return _rivet.cGenVertexVector_clear(*args) + def swap(*args): return _rivet.cGenVertexVector_swap(*args) + def get_allocator(*args): return _rivet.cGenVertexVector_get_allocator(*args) + def begin(*args): return _rivet.cGenVertexVector_begin(*args) + def end(*args): return _rivet.cGenVertexVector_end(*args) + def rbegin(*args): return _rivet.cGenVertexVector_rbegin(*args) + def rend(*args): return _rivet.cGenVertexVector_rend(*args) + def pop_back(*args): return _rivet.cGenVertexVector_pop_back(*args) + def erase(*args): return _rivet.cGenVertexVector_erase(*args) + def __init__(self, *args): + this = _rivet.new_cGenVertexVector(*args) + try: self.this.append(this) + except: self.this = this + def push_back(*args): return _rivet.cGenVertexVector_push_back(*args) + def front(*args): return _rivet.cGenVertexVector_front(*args) + def back(*args): return _rivet.cGenVertexVector_back(*args) + def assign(*args): return _rivet.cGenVertexVector_assign(*args) + def resize(*args): return _rivet.cGenVertexVector_resize(*args) + def insert(*args): return _rivet.cGenVertexVector_insert(*args) + def reserve(*args): return _rivet.cGenVertexVector_reserve(*args) + def capacity(*args): return _rivet.cGenVertexVector_capacity(*args) + __swig_destroy__ = _rivet.delete_cGenVertexVector + __del__ = lambda self : None; +cGenVertexVector_swigregister = _rivet.cGenVertexVector_swigregister +cGenVertexVector_swigregister(cGenVertexVector) + +class GenParticlePair(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, GenParticlePair, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, GenParticlePair, name) + __repr__ = _swig_repr + def __init__(self, *args): + this = _rivet.new_GenParticlePair(*args) + try: self.this.append(this) + except: self.this = this + __swig_setmethods__["first"] = _rivet.GenParticlePair_first_set + __swig_getmethods__["first"] = _rivet.GenParticlePair_first_get + if _newclass:first = _swig_property(_rivet.GenParticlePair_first_get, _rivet.GenParticlePair_first_set) + __swig_setmethods__["second"] = _rivet.GenParticlePair_second_set + __swig_getmethods__["second"] = _rivet.GenParticlePair_second_get + if _newclass:second = _swig_property(_rivet.GenParticlePair_second_get, _rivet.GenParticlePair_second_set) + def __len__(self): return 2 + def __repr__(self): return str((self.first, self.second)) + def __getitem__(self, index): + if not (index % 2): + return self.first + else: + return self.second + def __setitem__(self, index, val): + if not (index % 2): + self.first = val + else: + self.second = val + __swig_destroy__ = _rivet.delete_GenParticlePair + __del__ = lambda self : None; +GenParticlePair_swigregister = _rivet.GenParticlePair_swigregister +GenParticlePair_swigregister(GenParticlePair) + +class cGenParticlePair(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, cGenParticlePair, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, cGenParticlePair, name) + __repr__ = _swig_repr + def __init__(self, *args): + this = _rivet.new_cGenParticlePair(*args) + try: self.this.append(this) + except: self.this = this + __swig_setmethods__["first"] = _rivet.cGenParticlePair_first_set + __swig_getmethods__["first"] = _rivet.cGenParticlePair_first_get + if _newclass:first = _swig_property(_rivet.cGenParticlePair_first_get, _rivet.cGenParticlePair_first_set) + __swig_setmethods__["second"] = _rivet.cGenParticlePair_second_set + __swig_getmethods__["second"] = _rivet.cGenParticlePair_second_get + if _newclass:second = _swig_property(_rivet.cGenParticlePair_second_get, _rivet.cGenParticlePair_second_set) + def __len__(self): return 2 + def __repr__(self): return str((self.first, self.second)) + def __getitem__(self, index): + if not (index % 2): + return self.first + else: + return self.second + def __setitem__(self, index, val): + if not (index % 2): + self.first = val + else: + self.second = val + __swig_destroy__ = _rivet.delete_cGenParticlePair + __del__ = lambda self : None; +cGenParticlePair_swigregister = _rivet.cGenParticlePair_swigregister +cGenParticlePair_swigregister(cGenParticlePair) + +class StrList(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, StrList, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, StrList, name) + __repr__ = _swig_repr + def iterator(*args): return _rivet.StrList_iterator(*args) + def __iter__(self): return self.iterator() + def __nonzero__(*args): return _rivet.StrList___nonzero__(*args) + def __len__(*args): return _rivet.StrList___len__(*args) + def pop(*args): return _rivet.StrList_pop(*args) + def __getslice__(*args): return _rivet.StrList___getslice__(*args) + def __setslice__(*args): return _rivet.StrList___setslice__(*args) + def __delslice__(*args): return _rivet.StrList___delslice__(*args) + def __delitem__(*args): return _rivet.StrList___delitem__(*args) + def __getitem__(*args): return _rivet.StrList___getitem__(*args) + def __setitem__(*args): return _rivet.StrList___setitem__(*args) + def append(*args): return _rivet.StrList_append(*args) + def empty(*args): return _rivet.StrList_empty(*args) + def size(*args): return _rivet.StrList_size(*args) + def clear(*args): return _rivet.StrList_clear(*args) + def swap(*args): return _rivet.StrList_swap(*args) + def get_allocator(*args): return _rivet.StrList_get_allocator(*args) + def begin(*args): return _rivet.StrList_begin(*args) + def end(*args): return _rivet.StrList_end(*args) + def rbegin(*args): return _rivet.StrList_rbegin(*args) + def rend(*args): return _rivet.StrList_rend(*args) + def pop_back(*args): return _rivet.StrList_pop_back(*args) + def erase(*args): return _rivet.StrList_erase(*args) + def __init__(self, *args): + this = _rivet.new_StrList(*args) + try: self.this.append(this) + except: self.this = this + def push_back(*args): return _rivet.StrList_push_back(*args) + def front(*args): return _rivet.StrList_front(*args) + def back(*args): return _rivet.StrList_back(*args) + def assign(*args): return _rivet.StrList_assign(*args) + def resize(*args): return _rivet.StrList_resize(*args) + def insert(*args): return _rivet.StrList_insert(*args) + def reserve(*args): return _rivet.StrList_reserve(*args) + def capacity(*args): return _rivet.StrList_capacity(*args) + __swig_destroy__ = _rivet.delete_StrList + __del__ = lambda self : None; +StrList_swigregister = _rivet.StrList_swigregister +StrList_swigregister(StrList) + +AIDAML = _rivet.AIDAML +FLAT = _rivet.FLAT +ROOT = _rivet.ROOT +getKnownHistoFormats = _rivet.getKnownHistoFormats +getKnownHistoFormatsR = _rivet.getKnownHistoFormatsR +getKnownHistoFormatEnums = _rivet.getKnownHistoFormatEnums +getKnownHistoFormatNames = _rivet.getKnownHistoFormatNames +ELECTRON = _rivet.ELECTRON +POSITRON = _rivet.POSITRON +PROTON = _rivet.PROTON +ANTIPROTON = _rivet.ANTIPROTON +PHOTON = _rivet.PHOTON +NEUTRON = _rivet.NEUTRON +ANTINEUTRON = _rivet.ANTINEUTRON +MUON = _rivet.MUON +ANTIMUON = _rivet.ANTIMUON +NU_E = _rivet.NU_E +NU_EBAR = _rivet.NU_EBAR +NU_MU = _rivet.NU_MU +NU_MUBAR = _rivet.NU_MUBAR +NU_TAU = _rivet.NU_TAU +NU_TAUBAR = _rivet.NU_TAUBAR +PIPLUS = _rivet.PIPLUS +PIMINUS = _rivet.PIMINUS +TAU = _rivet.TAU +ANTITAU = _rivet.ANTITAU +EMINUS = _rivet.EMINUS +EPLUS = _rivet.EPLUS +P = _rivet.P +PBAR = _rivet.PBAR +GLUON = _rivet.GLUON +GAMMA = _rivet.GAMMA +WPLUSBOSON = _rivet.WPLUSBOSON +WMINUSBOSON = _rivet.WMINUSBOSON +ZBOSON = _rivet.ZBOSON +HIGGS = _rivet.HIGGS +DQUARK = _rivet.DQUARK +UQUARK = _rivet.UQUARK +SQUARK = _rivet.SQUARK +CQUARK = _rivet.CQUARK +BQUARK = _rivet.BQUARK +TQUARK = _rivet.TQUARK +ANY = _rivet.ANY +PHOTOELECTRON = _rivet.PHOTOELECTRON +PHOTOPOSITRON = _rivet.PHOTOPOSITRON +PHOTOMUON = _rivet.PHOTOMUON +PHOTOANTIMUON = _rivet.PHOTOANTIMUON +PHOTOTAU = _rivet.PHOTOTAU +PHOTOANTITAU = _rivet.PHOTOANTITAU +getParticleNamesMap = _rivet.getParticleNamesMap +getParticleNamesRMap = _rivet.getParticleNamesRMap +getParticleNameEnums = _rivet.getParticleNameEnums +getParticleNameEnum = _rivet.getParticleNameEnum +getParticleNames = _rivet.getParticleNames +toParticleName = _rivet.toParticleName +class BeamPair(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, BeamPair, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, BeamPair, name) + __repr__ = _swig_repr + def __init__(self, *args): + this = _rivet.new_BeamPair(*args) + try: self.this.append(this) + except: self.this = this + __swig_setmethods__["first"] = _rivet.BeamPair_first_set + __swig_getmethods__["first"] = _rivet.BeamPair_first_get + if _newclass:first = _swig_property(_rivet.BeamPair_first_get, _rivet.BeamPair_first_set) + __swig_setmethods__["second"] = _rivet.BeamPair_second_set + __swig_getmethods__["second"] = _rivet.BeamPair_second_get + if _newclass:second = _swig_property(_rivet.BeamPair_second_get, _rivet.BeamPair_second_set) + def __len__(self): return 2 + def __repr__(self): return str((self.first, self.second)) + def __getitem__(self, index): + if not (index % 2): + return self.first + else: + return self.second + def __setitem__(self, index, val): + if not (index % 2): + self.first = val + else: + self.second = val + __swig_destroy__ = _rivet.delete_BeamPair + __del__ = lambda self : None; +BeamPair_swigregister = _rivet.BeamPair_swigregister +BeamPair_swigregister(BeamPair) +make_pdgid_pair = _rivet.make_pdgid_pair +toString = _rivet.toString + +class LogLevelMap(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, LogLevelMap, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, LogLevelMap, name) + __repr__ = _swig_repr + def iterator(*args): return _rivet.LogLevelMap_iterator(*args) + def __iter__(self): return self.iterator() + def __nonzero__(*args): return _rivet.LogLevelMap___nonzero__(*args) + def __len__(*args): return _rivet.LogLevelMap___len__(*args) + def __getitem__(*args): return _rivet.LogLevelMap___getitem__(*args) + def __delitem__(*args): return _rivet.LogLevelMap___delitem__(*args) + def has_key(*args): return _rivet.LogLevelMap_has_key(*args) + def keys(*args): return _rivet.LogLevelMap_keys(*args) + def values(*args): return _rivet.LogLevelMap_values(*args) + def items(*args): return _rivet.LogLevelMap_items(*args) + def __contains__(*args): return _rivet.LogLevelMap___contains__(*args) + def key_iterator(*args): return _rivet.LogLevelMap_key_iterator(*args) + def value_iterator(*args): return _rivet.LogLevelMap_value_iterator(*args) + def __iter__(self): return self.key_iterator() + def iterkeys(self): return self.key_iterator() + def itervalues(self): return self.value_iterator() + def iteritems(self): return self.iterator() + def __setitem__(*args): return _rivet.LogLevelMap___setitem__(*args) + def __init__(self, *args): + this = _rivet.new_LogLevelMap(*args) + try: self.this.append(this) + except: self.this = this + def empty(*args): return _rivet.LogLevelMap_empty(*args) + def size(*args): return _rivet.LogLevelMap_size(*args) + def clear(*args): return _rivet.LogLevelMap_clear(*args) + def swap(*args): return _rivet.LogLevelMap_swap(*args) + def get_allocator(*args): return _rivet.LogLevelMap_get_allocator(*args) + def begin(*args): return _rivet.LogLevelMap_begin(*args) + def end(*args): return _rivet.LogLevelMap_end(*args) + def rbegin(*args): return _rivet.LogLevelMap_rbegin(*args) + def rend(*args): return _rivet.LogLevelMap_rend(*args) + def count(*args): return _rivet.LogLevelMap_count(*args) + def erase(*args): return _rivet.LogLevelMap_erase(*args) + def find(*args): return _rivet.LogLevelMap_find(*args) + def lower_bound(*args): return _rivet.LogLevelMap_lower_bound(*args) + def upper_bound(*args): return _rivet.LogLevelMap_upper_bound(*args) + __swig_destroy__ = _rivet.delete_LogLevelMap + __del__ = lambda self : None; +LogLevelMap_swigregister = _rivet.LogLevelMap_swigregister +LogLevelMap_swigregister(LogLevelMap) + +class Log(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, Log, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, Log, name) + def __init__(self): raise AttributeError, "No constructor defined" + __repr__ = _swig_repr + TRACE = _rivet.Log_TRACE + DEBUG = _rivet.Log_DEBUG + INFO = _rivet.Log_INFO + WARN = _rivet.Log_WARN + ERROR = _rivet.Log_ERROR + __swig_getmethods__["setLogLevel"] = lambda x: _rivet.Log_setLogLevel + if _newclass:setLogLevel = staticmethod(_rivet.Log_setLogLevel) + __swig_getmethods__["setLevels"] = lambda x: _rivet.Log_setLevels + if _newclass:setLevels = staticmethod(_rivet.Log_setLevels) + __swig_getmethods__["setShowTimestamp"] = lambda x: _rivet.Log_setShowTimestamp + if _newclass:setShowTimestamp = staticmethod(_rivet.Log_setShowTimestamp) + __swig_getmethods__["setShowLevel"] = lambda x: _rivet.Log_setShowLevel + if _newclass:setShowLevel = staticmethod(_rivet.Log_setShowLevel) + __swig_getmethods__["setShowLoggerName"] = lambda x: _rivet.Log_setShowLoggerName + if _newclass:setShowLoggerName = staticmethod(_rivet.Log_setShowLoggerName) + __swig_getmethods__["setUseColors"] = lambda x: _rivet.Log_setUseColors + if _newclass:setUseColors = staticmethod(_rivet.Log_setUseColors) + __swig_getmethods__["getLog"] = lambda x: _rivet.Log_getLog + if _newclass:getLog = staticmethod(_rivet.Log_getLog) + def getLevel(*args): return _rivet.Log_getLevel(*args) + def setLevel(*args): return _rivet.Log_setLevel(*args) + __swig_getmethods__["getLevelFromName"] = lambda x: _rivet.Log_getLevelFromName + if _newclass:getLevelFromName = staticmethod(_rivet.Log_getLevelFromName) + __swig_getmethods__["getLevelName"] = lambda x: _rivet.Log_getLevelName + if _newclass:getLevelName = staticmethod(_rivet.Log_getLevelName) + def getName(*args): return _rivet.Log_getName(*args) + def setName(*args): return _rivet.Log_setName(*args) + def isActive(*args): return _rivet.Log_isActive(*args) + def trace(*args): return _rivet.Log_trace(*args) + def debug(*args): return _rivet.Log_debug(*args) + def info(*args): return _rivet.Log_info(*args) + def warn(*args): return _rivet.Log_warn(*args) + def error(*args): return _rivet.Log_error(*args) + __swig_getmethods__["_nostream"] = _rivet.Log__nostream_get + if _newclass:_nostream = _swig_property(_rivet.Log__nostream_get) + __swig_destroy__ = _rivet.delete_Log + __del__ = lambda self : None; +Log_swigregister = _rivet.Log_swigregister +Log_swigregister(Log) +Log_setLogLevel = _rivet.Log_setLogLevel +Log_setLevels = _rivet.Log_setLevels +Log_setShowTimestamp = _rivet.Log_setShowTimestamp +Log_setShowLevel = _rivet.Log_setShowLevel +Log_setShowLoggerName = _rivet.Log_setShowLoggerName +Log_setUseColors = _rivet.Log_setUseColors +Log_getLog = _rivet.Log_getLog +Log_getLevelFromName = _rivet.Log_getLevelFromName +Log_getLevelName = _rivet.Log_getLevelName + +version = _rivet.version +class Event(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, Event, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, Event, name) + def __init__(self): raise AttributeError, "No constructor defined" + __repr__ = _swig_repr + __swig_destroy__ = _rivet.delete_Event + __del__ = lambda self : None; +Event_swigregister = _rivet.Event_swigregister +Event_swigregister(Event) +__lshift__ = _rivet.__lshift__ + +class Particle(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, Particle, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, Particle, name) + def __init__(self): raise AttributeError, "No constructor defined" + __repr__ = _swig_repr + __swig_destroy__ = _rivet.delete_Particle + __del__ = lambda self : None; +Particle_swigregister = _rivet.Particle_swigregister +Particle_swigregister(Particle) + +beams = _rivet.beams +beamIds = _rivet.beamIds +class Analysis(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, Analysis, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, Analysis, name) + def __init__(self): raise AttributeError, "No constructor defined" + __repr__ = _swig_repr + def name(*args): return _rivet.Analysis_name(*args) + def spiresId(*args): return _rivet.Analysis_spiresId(*args) + def summary(*args): return _rivet.Analysis_summary(*args) + def description(*args): return _rivet.Analysis_description(*args) + def runInfo(*args): return _rivet.Analysis_runInfo(*args) + def experiment(*args): return _rivet.Analysis_experiment(*args) + def collider(*args): return _rivet.Analysis_collider(*args) + def year(*args): return _rivet.Analysis_year(*args) + def status(*args): return _rivet.Analysis_status(*args) + def authors(*args): return _rivet.Analysis_authors(*args) + def references(*args): return _rivet.Analysis_references(*args) + def beams(*args): return _rivet.Analysis_beams(*args) + def requiredBeams(*args): return _rivet.Analysis_requiredBeams(*args) + def isCompatible(*args): return _rivet.Analysis_isCompatible(*args) + def needsCrossSection(*args): return _rivet.Analysis_needsCrossSection(*args) + __swig_destroy__ = _rivet.delete_Analysis + __del__ = lambda self : None; +Analysis_swigregister = _rivet.Analysis_swigregister +Analysis_swigregister(Analysis) + +class AnalysisHandler(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, AnalysisHandler, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, AnalysisHandler, name) + __repr__ = _swig_repr + def __init__(self, *args): + this = _rivet.new_AnalysisHandler(*args) + try: self.this.append(this) + except: self.this = this + def runName(*args): return _rivet.AnalysisHandler_runName(*args) + def numEvents(*args): return _rivet.AnalysisHandler_numEvents(*args) + def sumOfWeights(*args): return _rivet.AnalysisHandler_sumOfWeights(*args) + def analysisNames(*args): return _rivet.AnalysisHandler_analysisNames(*args) + def addAnalysis(*args): return _rivet.AnalysisHandler_addAnalysis(*args) + def addAnalyses(*args): return _rivet.AnalysisHandler_addAnalyses(*args) + def removeAnalysis(*args): return _rivet.AnalysisHandler_removeAnalysis(*args) + def removeAnalyses(*args): return _rivet.AnalysisHandler_removeAnalyses(*args) + def removeIncompatibleAnalyses(*args): return _rivet.AnalysisHandler_removeIncompatibleAnalyses(*args) + def init(*args): return _rivet.AnalysisHandler_init(*args) + def analyze(*args): return _rivet.AnalysisHandler_analyze(*args) + def finalize(*args): return _rivet.AnalysisHandler_finalize(*args) + def needCrossSection(*args): return _rivet.AnalysisHandler_needCrossSection(*args) + def setCrossSection(*args): return _rivet.AnalysisHandler_setCrossSection(*args) + def commitData(*args): return _rivet.AnalysisHandler_commitData(*args) + __swig_destroy__ = _rivet.delete_AnalysisHandler + __del__ = lambda self : None; +AnalysisHandler_swigregister = _rivet.AnalysisHandler_swigregister +AnalysisHandler_swigregister(AnalysisHandler) + +class AnalysisLoader(_object): + __swig_setmethods__ = {} + __setattr__ = lambda self, name, value: _swig_setattr(self, AnalysisLoader, name, value) + __swig_getmethods__ = {} + __getattr__ = lambda self, name: _swig_getattr(self, AnalysisLoader, name) + __repr__ = _swig_repr + __swig_getmethods__["getAnalysis"] = lambda x: _rivet.AnalysisLoader_getAnalysis + if _newclass:getAnalysis = staticmethod(_rivet.AnalysisLoader_getAnalysis) + __swig_getmethods__["closeAnalysisBuilders"] = lambda x: _rivet.AnalysisLoader_closeAnalysisBuilders + if _newclass:closeAnalysisBuilders = staticmethod(_rivet.AnalysisLoader_closeAnalysisBuilders) + __swig_getmethods__["allAnalysisNames"] = lambda x: _rivet.AnalysisLoader_allAnalysisNames + if _newclass:allAnalysisNames = staticmethod(_rivet.AnalysisLoader_allAnalysisNames) + def __init__(self, *args): + this = _rivet.new_AnalysisLoader(*args) + try: self.this.append(this) + except: self.this = this + __swig_destroy__ = _rivet.delete_AnalysisLoader + __del__ = lambda self : None; +AnalysisLoader_swigregister = _rivet.AnalysisLoader_swigregister +AnalysisLoader_swigregister(AnalysisLoader) +AnalysisLoader_getAnalysis = _rivet.AnalysisLoader_getAnalysis +AnalysisLoader_closeAnalysisBuilders = _rivet.AnalysisLoader_closeAnalysisBuilders +AnalysisLoader_allAnalysisNames = _rivet.AnalysisLoader_allAnalysisNames + + + Added: trunk/pyext/rivet_wrap.cc-HepMC23 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ trunk/pyext/rivet_wrap.cc-HepMC23 Tue Jul 14 15:18:00 2009 (r1684) @@ -0,0 +1,27306 @@ +/* ---------------------------------------------------------------------------- + * This file was automatically generated by SWIG (http://www.swig.org). + * Version 1.3.33 + * + * This file is not intended to be easily readable and contains a number of + * coding conventions designed to improve portability and efficiency. Do not make + * changes to this file unless you know what you are doing--modify the SWIG + * interface file instead. + * ----------------------------------------------------------------------------- */ + +#define SWIGPYTHON +#define SWIG_PYTHON_DIRECTOR_NO_VTABLE + +#ifdef __cplusplus +template<typename T> class SwigValueWrapper { + T *tt; +public: + SwigValueWrapper() : tt(0) { } + SwigValueWrapper(const SwigValueWrapper<T>& rhs) : tt(new T(*rhs.tt)) { } + SwigValueWrapper(const T& t) : tt(new T(t)) { } + ~SwigValueWrapper() { delete tt; } + SwigValueWrapper& operator=(const T& t) { delete tt; tt = new T(t); return *this; } + operator T&() const { return *tt; } + T *operator&() { return tt; } +private: + SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs); +}; + +template <typename T> T SwigValueInit() { + return T(); +} +#endif + +/* ----------------------------------------------------------------------------- + * This section contains generic SWIG labels for method/variable + * declarations/attributes, and other compiler dependent labels. + * ----------------------------------------------------------------------------- */ + +/* template workaround for compilers that cannot correctly implement the C++ standard */ +#ifndef SWIGTEMPLATEDISAMBIGUATOR +# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) +# define SWIGTEMPLATEDISAMBIGUATOR template +# elif defined(__HP_aCC) +/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ +/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ +# define SWIGTEMPLATEDISAMBIGUATOR template +# else +# define SWIGTEMPLATEDISAMBIGUATOR +# endif +#endif + +/* inline attribute */ +#ifndef SWIGINLINE +# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) +# define SWIGINLINE inline +# else +# define SWIGINLINE +# endif +#endif + +/* attribute recognised by some compilers to avoid 'unused' warnings */ +#ifndef SWIGUNUSED +# if defined(__GNUC__) +# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) +# define SWIGUNUSED __attribute__ ((__unused__)) +# else +# define SWIGUNUSED +# endif +# elif defined(__ICC) +# define SWIGUNUSED __attribute__ ((__unused__)) +# else +# define SWIGUNUSED +# endif +#endif + +#ifndef SWIGUNUSEDPARM +# ifdef __cplusplus +# define SWIGUNUSEDPARM(p) +# else +# define SWIGUNUSEDPARM(p) p SWIGUNUSED +# endif +#endif + +/* internal SWIG method */ +#ifndef SWIGINTERN +# define SWIGINTERN static SWIGUNUSED +#endif + +/* internal inline SWIG method */ +#ifndef SWIGINTERNINLINE +# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE +#endif + +/* exporting methods */ +#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) +# ifndef GCC_HASCLASSVISIBILITY +# define GCC_HASCLASSVISIBILITY +# endif +#endif + +#ifndef SWIGEXPORT +# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# if defined(STATIC_LINKED) +# define SWIGEXPORT +# else +# define SWIGEXPORT __declspec(dllexport) +# endif +# else +# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) +# define SWIGEXPORT __attribute__ ((visibility("default"))) +# else +# define SWIGEXPORT +# endif +# endif +#endif + +/* calling conventions for Windows */ +#ifndef SWIGSTDCALL +# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# define SWIGSTDCALL __stdcall +# else +# define SWIGSTDCALL +# endif +#endif + +/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ +#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) +# define _CRT_SECURE_NO_DEPRECATE +#endif + +/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ +#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) +# define _SCL_SECURE_NO_DEPRECATE +#endif + + + +/* Python.h has to appear first */ +#include <Python.h> + +/* ----------------------------------------------------------------------------- + * swigrun.swg + * + * This file contains generic CAPI SWIG runtime support for pointer + * type checking. + * ----------------------------------------------------------------------------- */ + +/* This should only be incremented when either the layout of swig_type_info changes, + or for whatever reason, the runtime changes incompatibly */ +#define SWIG_RUNTIME_VERSION "3" + +/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ +#ifdef SWIG_TYPE_TABLE +# define SWIG_QUOTE_STRING(x) #x +# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) +# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) +#else +# define SWIG_TYPE_TABLE_NAME +#endif + +/* + You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for + creating a static or dynamic library from the swig runtime code. + In 99.9% of the cases, swig just needs to declare them as 'static'. + + But only do this if is strictly necessary, ie, if you have problems + with your compiler or so. +*/ + +#ifndef SWIGRUNTIME +# define SWIGRUNTIME SWIGINTERN +#endif + +#ifndef SWIGRUNTIMEINLINE +# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE +#endif + +/* Generic buffer size */ +#ifndef SWIG_BUFFER_SIZE +# define SWIG_BUFFER_SIZE 1024 +#endif + +/* Flags for pointer conversions */ +#define SWIG_POINTER_DISOWN 0x1 + +/* Flags for new pointer objects */ +#define SWIG_POINTER_OWN 0x1 + + +/* + Flags/methods for returning states. + + The swig conversion methods, as ConvertPtr, return and integer + that tells if the conversion was successful or not. And if not, + an error code can be returned (see swigerrors.swg for the codes). + + Use the following macros/flags to set or process the returning + states. + + In old swig versions, you usually write code as: + + if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { + // success code + } else { + //fail code + } + + Now you can be more explicit as: + + int res = SWIG_ConvertPtr(obj,vptr,ty.flags); + if (SWIG_IsOK(res)) { + // success code + } else { + // fail code + } + + that seems to be the same, but now you can also do + + Type *ptr; + int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); + if (SWIG_IsOK(res)) { + // success code + if (SWIG_IsNewObj(res) { + ... + delete *ptr; + } else { + ... + } + } else { + // fail code + } + + I.e., now SWIG_ConvertPtr can return new objects and you can + identify the case and take care of the deallocation. Of course that + requires also to SWIG_ConvertPtr to return new result values, as + + int SWIG_ConvertPtr(obj, ptr,...) { + if (<obj is ok>) { + if (<need new object>) { + *ptr = <ptr to new allocated object>; + return SWIG_NEWOBJ; + } else { + *ptr = <ptr to old object>; + return SWIG_OLDOBJ; + } + } else { + return SWIG_BADOBJ; + } + } + + Of course, returning the plain '0(success)/-1(fail)' still works, but you can be + more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the + swig errors code. + + Finally, if the SWIG_CASTRANK_MODE is enabled, the result code + allows to return the 'cast rank', for example, if you have this + + int food(double) + int fooi(int); + + and you call + + food(1) // cast rank '1' (1 -> 1.0) + fooi(1) // cast rank '0' + + just use the SWIG_AddCast()/SWIG_CheckState() + + + */ +#define SWIG_OK (0) +#define SWIG_ERROR (-1) +#define SWIG_IsOK(r) (r >= 0) +#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) + +/* The CastRankLimit says how many bits are used for the cast rank */ +#define SWIG_CASTRANKLIMIT (1 << 8) +/* The NewMask denotes the object was created (using new/malloc) */ +#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) +/* The TmpMask is for in/out typemaps that use temporal objects */ +#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) +/* Simple returning values */ +#define SWIG_BADOBJ (SWIG_ERROR) +#define SWIG_OLDOBJ (SWIG_OK) +#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) +#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) +/* Check, add and del mask methods */ +#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) +#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) +#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) +#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) +#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) +#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) + + +/* Cast-Rank Mode */ +#if defined(SWIG_CASTRANK_MODE) +# ifndef SWIG_TypeRank +# define SWIG_TypeRank unsigned long +# endif +# ifndef SWIG_MAXCASTRANK /* Default cast allowed */ +# define SWIG_MAXCASTRANK (2) +# endif +# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) +# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) +SWIGINTERNINLINE int SWIG_AddCast(int r) { + return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; +} +SWIGINTERNINLINE int SWIG_CheckState(int r) { + return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; +} +#else /* no cast-rank mode */ +# define SWIG_AddCast +# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) +#endif + + + + +#include <string.h> + +#ifdef __cplusplus +extern "C" { +#endif + +typedef void *(*swig_converter_func)(void *); +typedef struct swig_type_info *(*swig_dycast_func)(void **); + +/* Structure to store inforomation on one type */ +typedef struct swig_type_info { + const char *name; /* mangled name of this type */ + const char *str; /* human readable name of this type */ + swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ + struct swig_cast_info *cast; /* linked list of types that can cast into this type */ + void *clientdata; /* language specific type data */ + int owndata; /* flag if the structure owns the clientdata */ +} swig_type_info; + +/* Structure to store a type and conversion function used for casting */ +typedef struct swig_cast_info { + swig_type_info *type; /* pointer to type that is equivalent to this type */ + swig_converter_func converter; /* function to cast the void pointers */ + struct swig_cast_info *next; /* pointer to next cast in linked list */ + struct swig_cast_info *prev; /* pointer to the previous cast */ +} swig_cast_info; + +/* Structure used to store module information + * Each module generates one structure like this, and the runtime collects + * all of these structures and stores them in a circularly linked list.*/ +typedef struct swig_module_info { + swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ + size_t size; /* Number of types in this module */ + struct swig_module_info *next; /* Pointer to next element in circularly linked list */ + swig_type_info **type_initial; /* Array of initially generated type structures */ + swig_cast_info **cast_initial; /* Array of initially generated casting structures */ + void *clientdata; /* Language specific module data */ +} swig_module_info; + +/* + Compare two type names skipping the space characters, therefore + "char*" == "char *" and "Class<int>" == "Class<int >", etc. + + Return 0 when the two name types are equivalent, as in + strncmp, but skipping ' '. +*/ +SWIGRUNTIME int +SWIG_TypeNameComp(const char *f1, const char *l1, + const char *f2, const char *l2) { + for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { + while ((*f1 == ' ') && (f1 != l1)) ++f1; + while ((*f2 == ' ') && (f2 != l2)) ++f2; + if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; + } + return (int)((l1 - f1) - (l2 - f2)); +} + +/* + Check type equivalence in a name list like <name1>|<name2>|... + Return 0 if not equal, 1 if equal +*/ +SWIGRUNTIME int +SWIG_TypeEquiv(const char *nb, const char *tb) { + int equiv = 0; + const char* te = tb + strlen(tb); + const char* ne = nb; + while (!equiv && *ne) { + for (nb = ne; *ne; ++ne) { + if (*ne == '|') break; + } + equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; + if (*ne) ++ne; + } + return equiv; +} + +/* + Check type equivalence in a name list like <name1>|<name2>|... + Return 0 if equal, -1 if nb < tb, 1 if nb > tb +*/ +SWIGRUNTIME int +SWIG_TypeCompare(const char *nb, const char *tb) { + int equiv = 0; + const char* te = tb + strlen(tb); + const char* ne = nb; + while (!equiv && *ne) { + for (nb = ne; *ne; ++ne) { + if (*ne == '|') break; + } + equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; + if (*ne) ++ne; + } + return equiv; +} + + +/* think of this as a c++ template<> or a scheme macro */ +#define SWIG_TypeCheck_Template(comparison, ty) \ + if (ty) { \ + swig_cast_info *iter = ty->cast; \ + while (iter) { \ + if (comparison) { \ + if (iter == ty->cast) return iter; \ + /* Move iter to the top of the linked list */ \ + iter->prev->next = iter->next; \ + if (iter->next) \ + iter->next->prev = iter->prev; \ + iter->next = ty->cast; \ + iter->prev = 0; \ + if (ty->cast) ty->cast->prev = iter; \ + ty->cast = iter; \ + return iter; \ + } \ + iter = iter->next; \ + } \ + } \ + return 0 + +/* + Check the typename +*/ +SWIGRUNTIME swig_cast_info * +SWIG_TypeCheck(const char *c, swig_type_info *ty) { + SWIG_TypeCheck_Template(strcmp(iter->type->name, c) == 0, ty); +} + +/* Same as previous function, except strcmp is replaced with a pointer comparison */ +SWIGRUNTIME swig_cast_info * +SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *into) { + SWIG_TypeCheck_Template(iter->type == from, into); +} + +/* + Cast a pointer up an inheritance hierarchy +*/ +SWIGRUNTIMEINLINE void * +SWIG_TypeCast(swig_cast_info *ty, void *ptr) { + return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr); +} + +/* + Dynamic pointer casting. Down an inheritance hierarchy +*/ +SWIGRUNTIME swig_type_info * +SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { + swig_type_info *lastty = ty; + if (!ty || !ty->dcast) return ty; + while (ty && (ty->dcast)) { + ty = (*ty->dcast)(ptr); + if (ty) lastty = ty; + } + return lastty; +} + +/* + Return the name associated with this type +*/ +SWIGRUNTIMEINLINE const char * +SWIG_TypeName(const swig_type_info *ty) { + return ty->name; +} + +/* + Return the pretty name associated with this type, + that is an unmangled type name in a form presentable to the user. +*/ +SWIGRUNTIME const char * +SWIG_TypePrettyName(const swig_type_info *type) { + /* The "str" field contains the equivalent pretty names of the + type, separated by vertical-bar characters. We choose + to print the last name, as it is often (?) the most + specific. */ + if (!type) return NULL; + if (type->str != NULL) { + const char *last_name = type->str; + const char *s; + for (s = type->str; *s; s++) + if (*s == '|') last_name = s+1; + return last_name; + } + else + return type->name; +} + +/* + Set the clientdata field for a type +*/ +SWIGRUNTIME void +SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { + swig_cast_info *cast = ti->cast; + /* if (ti->clientdata == clientdata) return; */ + ti->clientdata = clientdata; + + while (cast) { + if (!cast->converter) { + swig_type_info *tc = cast->type; + if (!tc->clientdata) { + SWIG_TypeClientData(tc, clientdata); + } + } + cast = cast->next; + } +} +SWIGRUNTIME void +SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { + SWIG_TypeClientData(ti, clientdata); + ti->owndata = 1; +} + +/* + Search for a swig_type_info structure only by mangled name + Search is a O(log #types) + + We start searching at module start, and finish searching when start == end. + Note: if start == end at the beginning of the function, we go all the way around + the circular list. +*/ +SWIGRUNTIME swig_type_info * +SWIG_MangledTypeQueryModule(swig_module_info *start, + swig_module_info *end, + const char *name) { + swig_module_info *iter = start; + do { + if (iter->size) { + register size_t l = 0; + register size_t r = iter->size - 1; + do { + /* since l+r >= 0, we can (>> 1) instead (/ 2) */ + register size_t i = (l + r) >> 1; + const char *iname = iter->types[i]->name; + if (iname) { + register int compare = strcmp(name, iname); + if (compare == 0) { + return iter->types[i]; + } else if (compare < 0) { + if (i) { + r = i - 1; + } else { + break; + } + } else if (compare > 0) { + l = i + 1; + } + } else { + break; /* should never happen */ + } + } while (l <= r); + } + iter = iter->next; + } while (iter != end); + return 0; +} + +/* + Search for a swig_type_info structure for either a mangled name or a human readable name. + It first searches the mangled names of the types, which is a O(log #types) + If a type is not found it then searches the human readable names, which is O(#types). + + We start searching at module start, and finish searching when start == end. + Note: if start == end at the beginning of the function, we go all the way around + the circular list. +*/ +SWIGRUNTIME swig_type_info * +SWIG_TypeQueryModule(swig_module_info *start, + swig_module_info *end, + const char *name) { + /* STEP 1: Search the name field using binary search */ + swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); + if (ret) { + return ret; + } else { + /* STEP 2: If the type hasn't been found, do a complete search + of the str field (the human readable name) */ + swig_module_info *iter = start; + do { + register size_t i = 0; + for (; i < iter->size; ++i) { + if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) + return iter->types[i]; + } + iter = iter->next; + } while (iter != end); + } + + /* neither found a match */ + return 0; +} + +/* + Pack binary data into a string +*/ +SWIGRUNTIME char * +SWIG_PackData(char *c, void *ptr, size_t sz) { + static const char hex[17] = "0123456789abcdef"; + register const unsigned char *u = (unsigned char *) ptr; + register const unsigned char *eu = u + sz; + for (; u != eu; ++u) { + register unsigned char uu = *u; + *(c++) = hex[(uu & 0xf0) >> 4]; + *(c++) = hex[uu & 0xf]; + } + return c; +} + +/* + Unpack binary data from a string +*/ +SWIGRUNTIME const char * +SWIG_UnpackData(const char *c, void *ptr, size_t sz) { + register unsigned char *u = (unsigned char *) ptr; + register const unsigned char *eu = u + sz; + for (; u != eu; ++u) { + register char d = *(c++); + register unsigned char uu; + if ((d >= '0') && (d <= '9')) + uu = ((d - '0') << 4); + else if ((d >= 'a') && (d <= 'f')) + uu = ((d - ('a'-10)) << 4); + else + return (char *) 0; + d = *(c++); + if ((d >= '0') && (d <= '9')) + uu |= (d - '0'); + else if ((d >= 'a') && (d <= 'f')) + uu |= (d - ('a'-10)); + else + return (char *) 0; + *u = uu; + } + return c; +} + +/* + Pack 'void *' into a string buffer. +*/ +SWIGRUNTIME char * +SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { + char *r = buff; + if ((2*sizeof(void *) + 2) > bsz) return 0; + *(r++) = '_'; + r = SWIG_PackData(r,&ptr,sizeof(void *)); + if (strlen(name) + 1 > (bsz - (r - buff))) return 0; + strcpy(r,name); + return buff; +} + +SWIGRUNTIME const char * +SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { + if (*c != '_') { + if (strcmp(c,"NULL") == 0) { + *ptr = (void *) 0; + return name; + } else { + return 0; + } + } + return SWIG_UnpackData(++c,ptr,sizeof(void *)); +} + +SWIGRUNTIME char * +SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { + char *r = buff; + size_t lname = (name ? strlen(name) : 0); + if ((2*sz + 2 + lname) > bsz) return 0; + *(r++) = '_'; + r = SWIG_PackData(r,ptr,sz); + if (lname) { + strncpy(r,name,lname+1); + } else { + *r = 0; + } + return buff; +} + +SWIGRUNTIME const char * +SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { + if (*c != '_') { + if (strcmp(c,"NULL") == 0) { + memset(ptr,0,sz); + return name; + } else { + return 0; + } + } + return SWIG_UnpackData(++c,ptr,sz); +} + +#ifdef __cplusplus +} +#endif + +/* Errors in SWIG */ +#define SWIG_UnknownError -1 +#define SWIG_IOError -2 +#define SWIG_RuntimeError -3 +#define SWIG_IndexError -4 +#define SWIG_TypeError -5 +#define SWIG_DivisionByZero -6 +#define SWIG_OverflowError -7 +#define SWIG_SyntaxError -8 +#define SWIG_ValueError -9 +#define SWIG_SystemError -10 +#define SWIG_AttributeError -11 +#define SWIG_MemoryError -12 +#define SWIG_NullReferenceError -13 + + + + +/* Add PyOS_snprintf for old Pythons */ +#if PY_VERSION_HEX < 0x02020000 +# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM) +# define PyOS_snprintf _snprintf +# else +# define PyOS_snprintf snprintf +# endif +#endif + +/* A crude PyString_FromFormat implementation for old Pythons */ +#if PY_VERSION_HEX < 0x02020000 + +#ifndef SWIG_PYBUFFER_SIZE +# define SWIG_PYBUFFER_SIZE 1024 +#endif + +static PyObject * +PyString_FromFormat(const char *fmt, ...) { + va_list ap; + char buf[SWIG_PYBUFFER_SIZE * 2]; + int res; + va_start(ap, fmt); + res = vsnprintf(buf, sizeof(buf), fmt, ap); + va_end(ap); + return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf); +} +#endif + +/* Add PyObject_Del for old Pythons */ +#if PY_VERSION_HEX < 0x01060000 +# define PyObject_Del(op) PyMem_DEL((op)) +#endif +#ifndef PyObject_DEL +# define PyObject_DEL PyObject_Del +#endif + +/* A crude PyExc_StopIteration exception for old Pythons */ +#if PY_VERSION_HEX < 0x02020000 +# ifndef PyExc_StopIteration +# define PyExc_StopIteration PyExc_RuntimeError +# endif +# ifndef PyObject_GenericGetAttr +# define PyObject_GenericGetAttr 0 +# endif +#endif +/* Py_NotImplemented is defined in 2.1 and up. */ +#if PY_VERSION_HEX < 0x02010000 +# ifndef Py_NotImplemented +# define Py_NotImplemented PyExc_RuntimeError +# endif +#endif + + +/* A crude PyString_AsStringAndSize implementation for old Pythons */ +#if PY_VERSION_HEX < 0x02010000 +# ifndef PyString_AsStringAndSize +# define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;} +# endif +#endif + +/* PySequence_Size for old Pythons */ +#if PY_VERSION_HEX < 0x02000000 +# ifndef PySequence_Size +# define PySequence_Size PySequence_Length +# endif +#endif + + +/* PyBool_FromLong for old Pythons */ +#if PY_VERSION_HEX < 0x02030000 +static +PyObject *PyBool_FromLong(long ok) +{ + PyObject *result = ok ? Py_True : Py_False; + Py_INCREF(result); + return result; +} +#endif + +/* Py_ssize_t for old Pythons */ +/* This code is as recommended by: */ +/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */ +#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) +typedef int Py_ssize_t; +# define PY_SSIZE_T_MAX INT_MAX +# define PY_SSIZE_T_MIN INT_MIN +#endif + +/* ----------------------------------------------------------------------------- + * error manipulation + * ----------------------------------------------------------------------------- */ + +SWIGRUNTIME PyObject* +SWIG_Python_ErrorType(int code) { + PyObject* type = 0; + switch(code) { + case SWIG_MemoryError: + type = PyExc_MemoryError; + break; + case SWIG_IOError: + type = PyExc_IOError; + break; + case SWIG_RuntimeError: + type = PyExc_RuntimeError; + break; + case SWIG_IndexError: + type = PyExc_IndexError; + break; + case SWIG_TypeError: + type = PyExc_TypeError; + break; + case SWIG_DivisionByZero: + type = PyExc_ZeroDivisionError; + break; + case SWIG_OverflowError: + type = PyExc_OverflowError; + break; + case SWIG_SyntaxError: + type = PyExc_SyntaxError; + break; + case SWIG_ValueError: + type = PyExc_ValueError; + break; + case SWIG_SystemError: + type = PyExc_SystemError; + break; + case SWIG_AttributeError: + type = PyExc_AttributeError; + break; + default: + type = PyExc_RuntimeError; + } + return type; +} + + +SWIGRUNTIME void +SWIG_Python_AddErrorMsg(const char* mesg) +{ + PyObject *type = 0; + PyObject *value = 0; + PyObject *traceback = 0; + + if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback); + if (value) { + PyObject *old_str = PyObject_Str(value); + PyErr_Clear(); + Py_XINCREF(type); + PyErr_Format(type, "%s %s", PyString_AsString(old_str), mesg); + Py_DECREF(old_str); + Py_DECREF(value); + } else { + PyErr_Format(PyExc_RuntimeError, mesg); + } +} + + + +#if defined(SWIG_PYTHON_NO_THREADS) +# if defined(SWIG_PYTHON_THREADS) +# undef SWIG_PYTHON_THREADS +# endif +#endif +#if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ +# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) +# if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */ +# define SWIG_PYTHON_USE_GIL +# endif +# endif +# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ +# ifndef SWIG_PYTHON_INITIALIZE_THREADS +# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads() +# endif +# ifdef __cplusplus /* C++ code */ + class SWIG_Python_Thread_Block { + bool status; + PyGILState_STATE state; + public: + void end() { if (status) { PyGILState_Release(state); status = false;} } + SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} + ~SWIG_Python_Thread_Block() { end(); } + }; + class SWIG_Python_Thread_Allow { + bool status; + PyThreadState *save; + public: + void end() { if (status) { PyEval_RestoreThread(save); status = false; }} + SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} + ~SWIG_Python_Thread_Allow() { end(); } + }; +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block +# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end() +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow +# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end() +# else /* C code */ +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure() +# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block) +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread() +# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow) +# endif +# else /* Old thread way, not implemented, user must provide it */ +# if !defined(SWIG_PYTHON_INITIALIZE_THREADS) +# define SWIG_PYTHON_INITIALIZE_THREADS +# endif +# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK +# endif +# if !defined(SWIG_PYTHON_THREAD_END_BLOCK) +# define SWIG_PYTHON_THREAD_END_BLOCK +# endif +# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW +# endif +# if !defined(SWIG_PYTHON_THREAD_END_ALLOW) +# define SWIG_PYTHON_THREAD_END_ALLOW +# endif +# endif +#else /* No thread support */ +# define SWIG_PYTHON_INITIALIZE_THREADS +# define SWIG_PYTHON_THREAD_BEGIN_BLOCK +# define SWIG_PYTHON_THREAD_END_BLOCK +# define SWIG_PYTHON_THREAD_BEGIN_ALLOW +# define SWIG_PYTHON_THREAD_END_ALLOW +#endif + +/* ----------------------------------------------------------------------------- + * Python API portion that goes into the runtime + * ----------------------------------------------------------------------------- */ + +#ifdef __cplusplus +extern "C" { +#if 0 +} /* cc-mode */ +#endif +#endif + +/* ----------------------------------------------------------------------------- + * Constant declarations + * ----------------------------------------------------------------------------- */ + +/* Constant Types */ +#define SWIG_PY_POINTER 4 +#define SWIG_PY_BINARY 5 + +/* Constant information structure */ +typedef struct swig_const_info { + int type; + char *name; + long lvalue; + double dvalue; + void *pvalue; + swig_type_info **ptype; +} swig_const_info; + +#ifdef __cplusplus +#if 0 +{ /* cc-mode */ +#endif +} +#endif + + +/* ----------------------------------------------------------------------------- + * See the LICENSE file for information on copyright, usage and redistribution + * of SWIG, and the README file for authors - http://www.swig.org/release.html. + * + * pyrun.swg + * + * This file contains the runtime support for Python modules + * and includes code for managing global variables and pointer + * type checking. + * + * ----------------------------------------------------------------------------- */ + +/* Common SWIG API */ + +/* for raw pointers */ +#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) +#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags) +#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) +#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags) +#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty) +#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src) +#define swig_owntype int + +/* for raw packed data */ +#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) +#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) + +/* for class or struct pointers */ +#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags) +#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags) + +/* for C or C++ function pointers */ +#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type) +#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0) + +/* for C++ member pointers, ie, member methods */ +#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) +#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) + + +/* Runtime API */ + +#define SWIG_GetModule(clientdata) SWIG_Python_GetModule() +#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) +#define SWIG_NewClientData(obj) PySwigClientData_New(obj) + +#define SWIG_SetErrorObj SWIG_Python_SetErrorObj +#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg +#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code) +#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) +#define SWIG_fail goto fail + + +/* Runtime API implementation */ + +/* Error manipulation */ + +SWIGINTERN void +SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetObject(errtype, obj); + Py_DECREF(obj); + SWIG_PYTHON_THREAD_END_BLOCK; +} + +SWIGINTERN void +SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetString(errtype, (char *) msg); + SWIG_PYTHON_THREAD_END_BLOCK; +} + +#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) + +/* Set a constant value */ + +SWIGINTERN void +SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { + PyDict_SetItemString(d, (char*) name, obj); + Py_DECREF(obj); +} + +/* Append a value to the result obj */ + +SWIGINTERN PyObject* +SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) { +#if !defined(SWIG_PYTHON_OUTPUT_TUPLE) + if (!result) { + result = obj; + } else if (result == Py_None) { + Py_DECREF(result); + result = obj; + } else { + if (!PyList_Check(result)) { + PyObject *o2 = result; + result = PyList_New(1); + PyList_SetItem(result, 0, o2); + } + PyList_Append(result,obj); + Py_DECREF(obj); + } + return result; +#else + PyObject* o2; + PyObject* o3; + if (!result) { + result = obj; + } else if (result == Py_None) { + Py_DECREF(result); + result = obj; + } else { + if (!PyTuple_Check(result)) { + o2 = result; + result = PyTuple_New(1); + PyTuple_SET_ITEM(result, 0, o2); + } + o3 = PyTuple_New(1); + PyTuple_SET_ITEM(o3, 0, obj); + o2 = result; + result = PySequence_Concat(o2, o3); + Py_DECREF(o2); + Py_DECREF(o3); + } + return result; +#endif +} + +/* Unpack the argument tuple */ + +SWIGINTERN int +SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs) +{ + if (!args) { + if (!min && !max) { + return 1; + } else { + PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none", + name, (min == max ? "" : "at least "), (int)min); + return 0; + } + } + if (!PyTuple_Check(args)) { + PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); + return 0; + } else { + register Py_ssize_t l = PyTuple_GET_SIZE(args); + if (l < min) { + PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", + name, (min == max ? "" : "at least "), (int)min, (int)l); + return 0; + } else if (l > max) { + PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", + name, (min == max ? "" : "at most "), (int)max, (int)l); + return 0; + } else { + register int i; + for (i = 0; i < l; ++i) { + objs[i] = PyTuple_GET_ITEM(args, i); + } + for (; l < max; ++l) { + objs[l] = 0; + } + return i + 1; + } + } +} + +/* A functor is a function object with one single object argument */ +#if PY_VERSION_HEX >= 0x02020000 +#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL); +#else +#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj); +#endif + +/* + Helper for static pointer initialization for both C and C++ code, for example + static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); +*/ +#ifdef __cplusplus +#define SWIG_STATIC_POINTER(var) var +#else +#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var +#endif + +/* ----------------------------------------------------------------------------- + * Pointer declarations + * ----------------------------------------------------------------------------- */ + +/* Flags for new pointer objects */ +#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1) +#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) + +#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1) + +#ifdef __cplusplus +extern "C" { +#if 0 +} /* cc-mode */ +#endif +#endif + +/* How to access Py_None */ +#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# ifndef SWIG_PYTHON_NO_BUILD_NONE +# ifndef SWIG_PYTHON_BUILD_NONE +# define SWIG_PYTHON_BUILD_NONE +# endif +# endif +#endif + +#ifdef SWIG_PYTHON_BUILD_NONE +# ifdef Py_None +# undef Py_None +# define Py_None SWIG_Py_None() +# endif +SWIGRUNTIMEINLINE PyObject * +_SWIG_Py_None(void) +{ + PyObject *none = Py_BuildValue((char*)""); + Py_DECREF(none); + return none; +} +SWIGRUNTIME PyObject * +SWIG_Py_None(void) +{ + static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None(); + return none; +} +#endif + +/* The python void return value */ + +SWIGRUNTIMEINLINE PyObject * +SWIG_Py_Void(void) +{ + PyObject *none = Py_None; + Py_INCREF(none); + return none; +} + +/* PySwigClientData */ + +typedef struct { + PyObject *klass; + PyObject *newraw; + PyObject *newargs; + PyObject *destroy; + int delargs; + int implicitconv; +} PySwigClientData; + +SWIGRUNTIMEINLINE int +SWIG_Python_CheckImplicit(swig_type_info *ty) +{ + PySwigClientData *data = (PySwigClientData *)ty->clientdata; + return data ? data->implicitconv : 0; +} + +SWIGRUNTIMEINLINE PyObject * +SWIG_Python_ExceptionType(swig_type_info *desc) { + PySwigClientData *data = desc ? (PySwigClientData *) desc->clientdata : 0; + PyObject *klass = data ? data->klass : 0; + return (klass ? klass : PyExc_RuntimeError); +} + + +SWIGRUNTIME PySwigClientData * +PySwigClientData_New(PyObject* obj) +{ + if (!obj) { + return 0; + } else { + PySwigClientData *data = (PySwigClientData *)malloc(sizeof(PySwigClientData)); + /* the klass element */ + data->klass = obj; + Py_INCREF(data->klass); + /* the newraw method and newargs arguments used to create a new raw instance */ + if (PyClass_Check(obj)) { + data->newraw = 0; + data->newargs = obj; + Py_INCREF(obj); + } else { +#if (PY_VERSION_HEX < 0x02020000) + data->newraw = 0; +#else + data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__"); +#endif + if (data->newraw) { + Py_INCREF(data->newraw); + data->newargs = PyTuple_New(1); + PyTuple_SetItem(data->newargs, 0, obj); + } else { + data->newargs = obj; + } + Py_INCREF(data->newargs); + } + /* the destroy method, aka as the C++ delete method */ + data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__"); + if (PyErr_Occurred()) { + PyErr_Clear(); + data->destroy = 0; + } + if (data->destroy) { + int flags; + Py_INCREF(data->destroy); + flags = PyCFunction_GET_FLAGS(data->destroy); +#ifdef METH_O + data->delargs = !(flags & (METH_O)); +#else + data->delargs = 0; +#endif + } else { + data->delargs = 0; + } + data->implicitconv = 0; + return data; + } +} + +SWIGRUNTIME void +PySwigClientData_Del(PySwigClientData* data) +{ + Py_XDECREF(data->newraw); + Py_XDECREF(data->newargs); + Py_XDECREF(data->destroy); +} + +/* =============== PySwigObject =====================*/ + +typedef struct { + PyObject_HEAD + void *ptr; + swig_type_info *ty; + int own; + PyObject *next; +} PySwigObject; + +SWIGRUNTIME PyObject * +PySwigObject_long(PySwigObject *v) +{ + return PyLong_FromVoidPtr(v->ptr); +} + +SWIGRUNTIME PyObject * +PySwigObject_format(const char* fmt, PySwigObject *v) +{ + PyObject *res = NULL; + PyObject *args = PyTuple_New(1); + if (args) { + if (PyTuple_SetItem(args, 0, PySwigObject_long(v)) == 0) { + PyObject *ofmt = PyString_FromString(fmt); + if (ofmt) { + res = PyString_Format(ofmt,args); + Py_DECREF(ofmt); + } + Py_DECREF(args); + } + } + return res; +} + +SWIGRUNTIME PyObject * +PySwigObject_oct(PySwigObject *v) +{ + return PySwigObject_format("%o",v); +} + +SWIGRUNTIME PyObject * +PySwigObject_hex(PySwigObject *v) +{ + return PySwigObject_format("%x",v); +} + +SWIGRUNTIME PyObject * +#ifdef METH_NOARGS +PySwigObject_repr(PySwigObject *v) +#else +PySwigObject_repr(PySwigObject *v, PyObject *args) +#endif +{ + const char *name = SWIG_TypePrettyName(v->ty); + PyObject *hex = PySwigObject_hex(v); + PyObject *repr = PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name, PyString_AsString(hex)); + Py_DECREF(hex); + if (v->next) { +#ifdef METH_NOARGS + PyObject *nrep = PySwigObject_repr((PySwigObject *)v->next); +#else + PyObject *nrep = PySwigObject_repr((PySwigObject *)v->next, args); +#endif + PyString_ConcatAndDel(&repr,nrep); + } + return repr; +} + +SWIGRUNTIME int +PySwigObject_print(PySwigObject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) +{ +#ifdef METH_NOARGS + PyObject *repr = PySwigObject_repr(v); +#else + PyObject *repr = PySwigObject_repr(v, NULL); +#endif + if (repr) { + fputs(PyString_AsString(repr), fp); + Py_DECREF(repr); + return 0; + } else { + return 1; + } +} + +SWIGRUNTIME PyObject * +PySwigObject_str(PySwigObject *v) +{ + char result[SWIG_BUFFER_SIZE]; + return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ? + PyString_FromString(result) : 0; +} + +SWIGRUNTIME int +PySwigObject_compare(PySwigObject *v, PySwigObject *w) +{ + void *i = v->ptr; + void *j = w->ptr; + return (i < j) ? -1 : ((i > j) ? 1 : 0); +} + +SWIGRUNTIME PyTypeObject* _PySwigObject_type(void); + +SWIGRUNTIME PyTypeObject* +PySwigObject_type(void) { + static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigObject_type(); + return type; +} + +SWIGRUNTIMEINLINE int +PySwigObject_Check(PyObject *op) { + return ((op)->ob_type == PySwigObject_type()) + || (strcmp((op)->ob_type->tp_name,"PySwigObject") == 0); +} + +SWIGRUNTIME PyObject * +PySwigObject_New(void *ptr, swig_type_info *ty, int own); + +SWIGRUNTIME void +PySwigObject_dealloc(PyObject *v) +{ + PySwigObject *sobj = (PySwigObject *) v; + PyObject *next = sobj->next; + if (sobj->own) { + swig_type_info *ty = sobj->ty; + PySwigClientData *data = ty ? (PySwigClientData *) ty->clientdata : 0; + PyObject *destroy = data ? data->destroy : 0; + if (destroy) { + /* destroy is always a VARARGS method */ + PyObject *res; + if (data->delargs) { + /* we need to create a temporal object to carry the destroy operation */ + PyObject *tmp = PySwigObject_New(sobj->ptr, ty, 0); + res = SWIG_Python_CallFunctor(destroy, tmp); + Py_DECREF(tmp); + } else { + PyCFunction meth = PyCFunction_GET_FUNCTION(destroy); + PyObject *mself = PyCFunction_GET_SELF(destroy); + res = ((*meth)(mself, v)); + } + Py_XDECREF(res); + } else { + const char *name = SWIG_TypePrettyName(ty); +#if !defined(SWIG_PYTHON_SILENT_MEMLEAK) + printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name); +#endif + } + } + Py_XDECREF(next); + PyObject_DEL(v); +} + +SWIGRUNTIME PyObject* +PySwigObject_append(PyObject* v, PyObject* next) +{ + PySwigObject *sobj = (PySwigObject *) v; +#ifndef METH_O + PyObject *tmp = 0; + if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL; + next = tmp; +#endif + if (!PySwigObject_Check(next)) { + return NULL; + } + sobj->next = next; + Py_INCREF(next); + return SWIG_Py_Void(); +} + +SWIGRUNTIME PyObject* +#ifdef METH_NOARGS +PySwigObject_next(PyObject* v) +#else +PySwigObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) +#endif +{ + PySwigObject *sobj = (PySwigObject *) v; + if (sobj->next) { + Py_INCREF(sobj->next); + return sobj->next; + } else { + return SWIG_Py_Void(); + } +} + +SWIGINTERN PyObject* +#ifdef METH_NOARGS +PySwigObject_disown(PyObject *v) +#else +PySwigObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) +#endif +{ + PySwigObject *sobj = (PySwigObject *)v; + sobj->own = 0; + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject* +#ifdef METH_NOARGS +PySwigObject_acquire(PyObject *v) +#else +PySwigObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) +#endif +{ + PySwigObject *sobj = (PySwigObject *)v; + sobj->own = SWIG_POINTER_OWN; + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject* +PySwigObject_own(PyObject *v, PyObject *args) +{ + PyObject *val = 0; +#if (PY_VERSION_HEX < 0x02020000) + if (!PyArg_ParseTuple(args,(char *)"|O:own",&val)) +#else + if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val)) +#endif + { + return NULL; + } + else + { + PySwigObject *sobj = (PySwigObject *)v; + PyObject *obj = PyBool_FromLong(sobj->own); + if (val) { +#ifdef METH_NOARGS + if (PyObject_IsTrue(val)) { + PySwigObject_acquire(v); + } else { + PySwigObject_disown(v); + } +#else + if (PyObject_IsTrue(val)) { + PySwigObject_acquire(v,args); + } else { + PySwigObject_disown(v,args); + } +#endif + } + return obj; + } +} + +#ifdef METH_O +static PyMethodDef +swigobject_methods[] = { + {(char *)"disown", (PyCFunction)PySwigObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"}, + {(char *)"acquire", (PyCFunction)PySwigObject_acquire, METH_NOARGS, (char *)"aquires ownership of the pointer"}, + {(char *)"own", (PyCFunction)PySwigObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, + {(char *)"append", (PyCFunction)PySwigObject_append, METH_O, (char *)"appends another 'this' object"}, + {(char *)"next", (PyCFunction)PySwigObject_next, METH_NOARGS, (char *)"returns the next 'this' object"}, + {(char *)"__repr__",(PyCFunction)PySwigObject_repr, METH_NOARGS, (char *)"returns object representation"}, + {0, 0, 0, 0} +}; +#else +static PyMethodDef +swigobject_methods[] = { + {(char *)"disown", (PyCFunction)PySwigObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"}, + {(char *)"acquire", (PyCFunction)PySwigObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"}, + {(char *)"own", (PyCFunction)PySwigObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, + {(char *)"append", (PyCFunction)PySwigObject_append, METH_VARARGS, (char *)"appends another 'this' object"}, + {(char *)"next", (PyCFunction)PySwigObject_next, METH_VARARGS, (char *)"returns the next 'this' object"}, + {(char *)"__repr__",(PyCFunction)PySwigObject_repr, METH_VARARGS, (char *)"returns object representation"}, + {0, 0, 0, 0} +}; +#endif + +#if PY_VERSION_HEX < 0x02020000 +SWIGINTERN PyObject * +PySwigObject_getattr(PySwigObject *sobj,char *name) +{ + return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name); +} +#endif + +SWIGRUNTIME PyTypeObject* +_PySwigObject_type(void) { + static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer"; + + static PyNumberMethods PySwigObject_as_number = { + (binaryfunc)0, /*nb_add*/ + (binaryfunc)0, /*nb_subtract*/ + (binaryfunc)0, /*nb_multiply*/ + (binaryfunc)0, /*nb_divide*/ + (binaryfunc)0, /*nb_remainder*/ + (binaryfunc)0, /*nb_divmod*/ + (ternaryfunc)0,/*nb_power*/ + (unaryfunc)0, /*nb_negative*/ + (unaryfunc)0, /*nb_positive*/ + (unaryfunc)0, /*nb_absolute*/ + (inquiry)0, /*nb_nonzero*/ + 0, /*nb_invert*/ + 0, /*nb_lshift*/ + 0, /*nb_rshift*/ + 0, /*nb_and*/ + 0, /*nb_xor*/ + 0, /*nb_or*/ + (coercion)0, /*nb_coerce*/ + (unaryfunc)PySwigObject_long, /*nb_int*/ + (unaryfunc)PySwigObject_long, /*nb_long*/ + (unaryfunc)0, /*nb_float*/ + (unaryfunc)PySwigObject_oct, /*nb_oct*/ + (unaryfunc)PySwigObject_hex, /*nb_hex*/ +#if PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */ +#elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */ +#elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */ + 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */ +#endif + }; + + static PyTypeObject pyswigobject_type; + static int type_init = 0; + if (!type_init) { + const PyTypeObject tmp + = { + PyObject_HEAD_INIT(NULL) + 0, /* ob_size */ + (char *)"PySwigObject", /* tp_name */ + sizeof(PySwigObject), /* tp_basicsize */ + 0, /* tp_itemsize */ + (destructor)PySwigObject_dealloc, /* tp_dealloc */ + (printfunc)PySwigObject_print, /* tp_print */ +#if PY_VERSION_HEX < 0x02020000 + (getattrfunc)PySwigObject_getattr, /* tp_getattr */ +#else + (getattrfunc)0, /* tp_getattr */ +#endif + (setattrfunc)0, /* tp_setattr */ + (cmpfunc)PySwigObject_compare, /* tp_compare */ + (reprfunc)PySwigObject_repr, /* tp_repr */ + &PySwigObject_as_number, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + (hashfunc)0, /* tp_hash */ + (ternaryfunc)0, /* tp_call */ + (reprfunc)PySwigObject_str, /* tp_str */ + PyObject_GenericGetAttr, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + Py_TPFLAGS_DEFAULT, /* tp_flags */ + swigobject_doc, /* tp_doc */ + 0, /* tp_traverse */ + 0, /* tp_clear */ + 0, /* tp_richcompare */ + 0, /* tp_weaklistoffset */ +#if PY_VERSION_HEX >= 0x02020000 + 0, /* tp_iter */ + 0, /* tp_iternext */ + swigobject_methods, /* tp_methods */ + 0, /* tp_members */ + 0, /* tp_getset */ + 0, /* tp_base */ + 0, /* tp_dict */ + 0, /* tp_descr_get */ + 0, /* tp_descr_set */ + 0, /* tp_dictoffset */ + 0, /* tp_init */ + 0, /* tp_alloc */ + 0, /* tp_new */ + 0, /* tp_free */ + 0, /* tp_is_gc */ + 0, /* tp_bases */ + 0, /* tp_mro */ + 0, /* tp_cache */ + 0, /* tp_subclasses */ + 0, /* tp_weaklist */ +#endif +#if PY_VERSION_HEX >= 0x02030000 + 0, /* tp_del */ +#endif +#ifdef COUNT_ALLOCS + 0,0,0,0 /* tp_alloc -> tp_next */ +#endif + }; + pyswigobject_type = tmp; + pyswigobject_type.ob_type = &PyType_Type; + type_init = 1; + } + return &pyswigobject_type; +} + +SWIGRUNTIME PyObject * +PySwigObject_New(void *ptr, swig_type_info *ty, int own) +{ + PySwigObject *sobj = PyObject_NEW(PySwigObject, PySwigObject_type()); + if (sobj) { + sobj->ptr = ptr; + sobj->ty = ty; + sobj->own = own; + sobj->next = 0; + } + return (PyObject *)sobj; +} + +/* ----------------------------------------------------------------------------- + * Implements a simple Swig Packed type, and use it instead of string + * ----------------------------------------------------------------------------- */ + +typedef struct { + PyObject_HEAD + void *pack; + swig_type_info *ty; + size_t size; +} PySwigPacked; + +SWIGRUNTIME int +PySwigPacked_print(PySwigPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags)) +{ + char result[SWIG_BUFFER_SIZE]; + fputs("<Swig Packed ", fp); + if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { + fputs("at ", fp); + fputs(result, fp); + } + fputs(v->ty->name,fp); + fputs(">", fp); + return 0; +} + +SWIGRUNTIME PyObject * +PySwigPacked_repr(PySwigPacked *v) +{ + char result[SWIG_BUFFER_SIZE]; + if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { + return PyString_FromFormat("<Swig Packed at %s%s>", result, v->ty->name); + } else { + return PyString_FromFormat("<Swig Packed %s>", v->ty->name); + } +} + +SWIGRUNTIME PyObject * +PySwigPacked_str(PySwigPacked *v) +{ + char result[SWIG_BUFFER_SIZE]; + if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){ + return PyString_FromFormat("%s%s", result, v->ty->name); + } else { + return PyString_FromString(v->ty->name); + } +} + +SWIGRUNTIME int +PySwigPacked_compare(PySwigPacked *v, PySwigPacked *w) +{ + size_t i = v->size; + size_t j = w->size; + int s = (i < j) ? -1 : ((i > j) ? 1 : 0); + return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size); +} + +SWIGRUNTIME PyTypeObject* _PySwigPacked_type(void); + +SWIGRUNTIME PyTypeObject* +PySwigPacked_type(void) { + static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigPacked_type(); + return type; +} + +SWIGRUNTIMEINLINE int +PySwigPacked_Check(PyObject *op) { + return ((op)->ob_type == _PySwigPacked_type()) + || (strcmp((op)->ob_type->tp_name,"PySwigPacked") == 0); +} + +SWIGRUNTIME void +PySwigPacked_dealloc(PyObject *v) +{ + if (PySwigPacked_Check(v)) { + PySwigPacked *sobj = (PySwigPacked *) v; + free(sobj->pack); + } + PyObject_DEL(v); +} + +SWIGRUNTIME PyTypeObject* +_PySwigPacked_type(void) { + static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer"; + static PyTypeObject pyswigpacked_type; + static int type_init = 0; + if (!type_init) { + const PyTypeObject tmp + = { + PyObject_HEAD_INIT(NULL) + 0, /* ob_size */ + (char *)"PySwigPacked", /* tp_name */ + sizeof(PySwigPacked), /* tp_basicsize */ + 0, /* tp_itemsize */ + (destructor)PySwigPacked_dealloc, /* tp_dealloc */ + (printfunc)PySwigPacked_print, /* tp_print */ + (getattrfunc)0, /* tp_getattr */ + (setattrfunc)0, /* tp_setattr */ + (cmpfunc)PySwigPacked_compare, /* tp_compare */ + (reprfunc)PySwigPacked_repr, /* tp_repr */ + 0, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + (hashfunc)0, /* tp_hash */ + (ternaryfunc)0, /* tp_call */ + (reprfunc)PySwigPacked_str, /* tp_str */ + PyObject_GenericGetAttr, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + Py_TPFLAGS_DEFAULT, /* tp_flags */ + swigpacked_doc, /* tp_doc */ + 0, /* tp_traverse */ + 0, /* tp_clear */ + 0, /* tp_richcompare */ + 0, /* tp_weaklistoffset */ +#if PY_VERSION_HEX >= 0x02020000 + 0, /* tp_iter */ + 0, /* tp_iternext */ + 0, /* tp_methods */ + 0, /* tp_members */ + 0, /* tp_getset */ + 0, /* tp_base */ + 0, /* tp_dict */ + 0, /* tp_descr_get */ + 0, /* tp_descr_set */ + 0, /* tp_dictoffset */ + 0, /* tp_init */ + 0, /* tp_alloc */ + 0, /* tp_new */ + 0, /* tp_free */ + 0, /* tp_is_gc */ + 0, /* tp_bases */ + 0, /* tp_mro */ + 0, /* tp_cache */ + 0, /* tp_subclasses */ + 0, /* tp_weaklist */ +#endif +#if PY_VERSION_HEX >= 0x02030000 + 0, /* tp_del */ +#endif +#ifdef COUNT_ALLOCS + 0,0,0,0 /* tp_alloc -> tp_next */ +#endif + }; + pyswigpacked_type = tmp; + pyswigpacked_type.ob_type = &PyType_Type; + type_init = 1; + } + return &pyswigpacked_type; +} + +SWIGRUNTIME PyObject * +PySwigPacked_New(void *ptr, size_t size, swig_type_info *ty) +{ + PySwigPacked *sobj = PyObject_NEW(PySwigPacked, PySwigPacked_type()); + if (sobj) { + void *pack = malloc(size); + if (pack) { + memcpy(pack, ptr, size); + sobj->pack = pack; + sobj->ty = ty; + sobj->size = size; + } else { + PyObject_DEL((PyObject *) sobj); + sobj = 0; + } + } + return (PyObject *) sobj; +} + +SWIGRUNTIME swig_type_info * +PySwigPacked_UnpackData(PyObject *obj, void *ptr, size_t size) +{ + if (PySwigPacked_Check(obj)) { + PySwigPacked *sobj = (PySwigPacked *)obj; + if (sobj->size != size) return 0; + memcpy(ptr, sobj->pack, size); + return sobj->ty; + } else { + return 0; + } +} + +/* ----------------------------------------------------------------------------- + * pointers/data manipulation + * ----------------------------------------------------------------------------- */ + +SWIGRUNTIMEINLINE PyObject * +_SWIG_This(void) +{ + return PyString_FromString("this"); +} + +SWIGRUNTIME PyObject * +SWIG_This(void) +{ + static PyObject *SWIG_STATIC_POINTER(swig_this) = _SWIG_This(); + return swig_this; +} + +/* #define SWIG_PYTHON_SLOW_GETSET_THIS */ + +SWIGRUNTIME PySwigObject * +SWIG_Python_GetSwigThis(PyObject *pyobj) +{ + if (PySwigObject_Check(pyobj)) { + return (PySwigObject *) pyobj; + } else { + PyObject *obj = 0; +#if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000)) + if (PyInstance_Check(pyobj)) { + obj = _PyInstance_Lookup(pyobj, SWIG_This()); + } else { + PyObject **dictptr = _PyObject_GetDictPtr(pyobj); + if (dictptr != NULL) { + PyObject *dict = *dictptr; + obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; + } else { +#ifdef PyWeakref_CheckProxy + if (PyWeakref_CheckProxy(pyobj)) { + PyObject *wobj = PyWeakref_GET_OBJECT(pyobj); + return wobj ? SWIG_Python_GetSwigThis(wobj) : 0; + } +#endif + obj = PyObject_GetAttr(pyobj,SWIG_This()); + if (obj) { + Py_DECREF(obj); + } else { + if (PyErr_Occurred()) PyErr_Clear(); + return 0; + } + } + } +#else + obj = PyObject_GetAttr(pyobj,SWIG_This()); + if (obj) { + Py_DECREF(obj); + } else { + if (PyErr_Occurred()) PyErr_Clear(); + return 0; + } +#endif + if (obj && !PySwigObject_Check(obj)) { + /* a PyObject is called 'this', try to get the 'real this' + PySwigObject from it */ + return SWIG_Python_GetSwigThis(obj); + } + return (PySwigObject *)obj; + } +} + +/* Acquire a pointer value */ + +SWIGRUNTIME int +SWIG_Python_AcquirePtr(PyObject *obj, int own) { + if (own) { + PySwigObject *sobj = SWIG_Python_GetSwigThis(obj); + if (sobj) { + int oldown = sobj->own; + sobj->own = own; + return oldown; + } + } + return 0; +} + +/* Convert a pointer value */ + +SWIGRUNTIME int +SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { + if (!obj) return SWIG_ERROR; + if (obj == Py_None) { + if (ptr) *ptr = 0; + return SWIG_OK; + } else { + PySwigObject *sobj = SWIG_Python_GetSwigThis(obj); + while (sobj) { + void *vptr = sobj->ptr; + if (ty) { + swig_type_info *to = sobj->ty; + if (to == ty) { + /* no type cast needed */ + if (ptr) *ptr = vptr; + break; + } else { + swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); + if (!tc) { + sobj = (PySwigObject *)sobj->next; + } else { + if (ptr) *ptr = SWIG_TypeCast(tc,vptr); + break; + } + } + } else { + if (ptr) *ptr = vptr; + break; + } + } + if (sobj) { + if (own) *own = sobj->own; + if (flags & SWIG_POINTER_DISOWN) { + sobj->own = 0; + } + return SWIG_OK; + } else { + int res = SWIG_ERROR; + if (flags & SWIG_POINTER_IMPLICIT_CONV) { + PySwigClientData *data = ty ? (PySwigClientData *) ty->clientdata : 0; + if (data && !data->implicitconv) { + PyObject *klass = data->klass; + if (klass) { + PyObject *impconv; + data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/ + impconv = SWIG_Python_CallFunctor(klass, obj); + data->implicitconv = 0; + if (PyErr_Occurred()) { + PyErr_Clear(); + impconv = 0; + } + if (impconv) { + PySwigObject *iobj = SWIG_Python_GetSwigThis(impconv); + if (iobj) { + void *vptr; + res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0); + if (SWIG_IsOK(res)) { + if (ptr) { + *ptr = vptr; + /* transfer the ownership to 'ptr' */ + iobj->own = 0; + res = SWIG_AddCast(res); + res = SWIG_AddNewMask(res); + } else { + res = SWIG_AddCast(res); + } + } + } + Py_DECREF(impconv); + } + } + } + } + return res; + } + } +} + +/* Convert a function ptr value */ + +SWIGRUNTIME int +SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) { + if (!PyCFunction_Check(obj)) { + return SWIG_ConvertPtr(obj, ptr, ty, 0); + } else { + void *vptr = 0; + + /* here we get the method pointer for callbacks */ + const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); + const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0; + if (desc) { + desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0; + if (!desc) return SWIG_ERROR; + } + if (ty) { + swig_cast_info *tc = SWIG_TypeCheck(desc,ty); + if (!tc) return SWIG_ERROR; + *ptr = SWIG_TypeCast(tc,vptr); + } else { + *ptr = vptr; + } + return SWIG_OK; + } +} + +/* Convert a packed value value */ + +SWIGRUNTIME int +SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) { + swig_type_info *to = PySwigPacked_UnpackData(obj, ptr, sz); + if (!to) return SWIG_ERROR; + if (ty) { + if (to != ty) { + /* check type cast? */ + swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); + if (!tc) return SWIG_ERROR; + } + } + return SWIG_OK; +} + +/* ----------------------------------------------------------------------------- + * Create a new pointer object + * ----------------------------------------------------------------------------- */ + +/* + Create a new instance object, whitout calling __init__, and set the + 'this' attribute. +*/ + +SWIGRUNTIME PyObject* +SWIG_Python_NewShadowInstance(PySwigClientData *data, PyObject *swig_this) +{ +#if (PY_VERSION_HEX >= 0x02020000) + PyObject *inst = 0; + PyObject *newraw = data->newraw; + if (newraw) { + inst = PyObject_Call(newraw, data->newargs, NULL); + if (inst) { +#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) + PyObject **dictptr = _PyObject_GetDictPtr(inst); + if (dictptr != NULL) { + PyObject *dict = *dictptr; + if (dict == NULL) { + dict = PyDict_New(); + *dictptr = dict; + PyDict_SetItem(dict, SWIG_This(), swig_this); + } + } +#else + PyObject *key = SWIG_This(); + PyObject_SetAttr(inst, key, swig_this); +#endif + } + } else { + PyObject *dict = PyDict_New(); + PyDict_SetItem(dict, SWIG_This(), swig_this); + inst = PyInstance_NewRaw(data->newargs, dict); + Py_DECREF(dict); + } + return inst; +#else +#if (PY_VERSION_HEX >= 0x02010000) + PyObject *inst; + PyObject *dict = PyDict_New(); + PyDict_SetItem(dict, SWIG_This(), swig_this); + inst = PyInstance_NewRaw(data->newargs, dict); + Py_DECREF(dict); + return (PyObject *) inst; +#else + PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type); + if (inst == NULL) { + return NULL; + } + inst->in_class = (PyClassObject *)data->newargs; + Py_INCREF(inst->in_class); + inst->in_dict = PyDict_New(); + if (inst->in_dict == NULL) { + Py_DECREF(inst); + return NULL; + } +#ifdef Py_TPFLAGS_HAVE_WEAKREFS + inst->in_weakreflist = NULL; +#endif +#ifdef Py_TPFLAGS_GC + PyObject_GC_Init(inst); +#endif + PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this); + return (PyObject *) inst; +#endif +#endif +} + +SWIGRUNTIME void +SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this) +{ + PyObject *dict; +#if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS) + PyObject **dictptr = _PyObject_GetDictPtr(inst); + if (dictptr != NULL) { + dict = *dictptr; + if (dict == NULL) { + dict = PyDict_New(); + *dictptr = dict; + } + PyDict_SetItem(dict, SWIG_This(), swig_this); + return; + } +#endif + dict = PyObject_GetAttrString(inst, (char*)"__dict__"); + PyDict_SetItem(dict, SWIG_This(), swig_this); + Py_DECREF(dict); +} + + +SWIGINTERN PyObject * +SWIG_Python_InitShadowInstance(PyObject *args) { + PyObject *obj[2]; + if (!SWIG_Python_UnpackTuple(args,(char*)"swiginit", 2, 2, obj)) { + return NULL; + } else { + PySwigObject *sthis = SWIG_Python_GetSwigThis(obj[0]); + if (sthis) { + PySwigObject_append((PyObject*) sthis, obj[1]); + } else { + SWIG_Python_SetSwigThis(obj[0], obj[1]); + } + return SWIG_Py_Void(); + } +} + +/* Create a new pointer object */ + +SWIGRUNTIME PyObject * +SWIG_Python_NewPointerObj(void *ptr, swig_type_info *type, int flags) { + if (!ptr) { + return SWIG_Py_Void(); + } else { + int own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; + PyObject *robj = PySwigObject_New(ptr, type, own); + PySwigClientData *clientdata = type ? (PySwigClientData *)(type->clientdata) : 0; + if (clientdata && !(flags & SWIG_POINTER_NOSHADOW)) { + PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj); + if (inst) { + Py_DECREF(robj); + robj = inst; + } + } + return robj; + } +} + +/* Create a new packed object */ + +SWIGRUNTIMEINLINE PyObject * +SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { + return ptr ? PySwigPacked_New((void *) ptr, sz, type) : SWIG_Py_Void(); +} + +/* -----------------------------------------------------------------------------* + * Get type list + * -----------------------------------------------------------------------------*/ + +#ifdef SWIG_LINK_RUNTIME +void *SWIG_ReturnGlobalTypeList(void *); +#endif + +SWIGRUNTIME swig_module_info * +SWIG_Python_GetModule(void) { + static void *type_pointer = (void *)0; + /* first check if module already created */ + if (!type_pointer) { +#ifdef SWIG_LINK_RUNTIME + type_pointer = SWIG_ReturnGlobalTypeList((void *)0); +#else + type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, + (char*)"type_pointer" SWIG_TYPE_TABLE_NAME); + if (PyErr_Occurred()) { + PyErr_Clear(); + type_pointer = (void *)0; + } +#endif + } + return (swig_module_info *) type_pointer; +} + +#if PY_MAJOR_VERSION < 2 +/* PyModule_AddObject function was introduced in Python 2.0. The following function + is copied out of Python/modsupport.c in python version 2.3.4 */ +SWIGINTERN int +PyModule_AddObject(PyObject *m, char *name, PyObject *o) +{ + PyObject *dict; + if (!PyModule_Check(m)) { + PyErr_SetString(PyExc_TypeError, + "PyModule_AddObject() needs module as first arg"); + return SWIG_ERROR; + } + if (!o) { + PyErr_SetString(PyExc_TypeError, + "PyModule_AddObject() needs non-NULL value"); + return SWIG_ERROR; + } + + dict = PyModule_GetDict(m); + if (dict == NULL) { + /* Internal error -- modules must have a dict! */ + PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__", + PyModule_GetName(m)); + return SWIG_ERROR; + } + if (PyDict_SetItemString(dict, name, o)) + return SWIG_ERROR; + Py_DECREF(o); + return SWIG_OK; +} +#endif + +SWIGRUNTIME void +SWIG_Python_DestroyModule(void *vptr) +{ + swig_module_info *swig_module = (swig_module_info *) vptr; + swig_type_info **types = swig_module->types; + size_t i; + for (i =0; i < swig_module->size; ++i) { + swig_type_info *ty = types[i]; + if (ty->owndata) { + PySwigClientData *data = (PySwigClientData *) ty->clientdata; + if (data) PySwigClientData_Del(data); + } + } + Py_DECREF(SWIG_This()); +} + +SWIGRUNTIME void +SWIG_Python_SetModule(swig_module_info *swig_module) { + static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };/* Sentinel */ + + PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, + swig_empty_runtime_method_table); + PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule); + if (pointer && module) { + PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer); + } else { + Py_XDECREF(pointer); + } +} + +/* The python cached type query */ +SWIGRUNTIME PyObject * +SWIG_Python_TypeCache(void) { + static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New(); + return cache; +} + +SWIGRUNTIME swig_type_info * +SWIG_Python_TypeQuery(const char *type) +{ + PyObject *cache = SWIG_Python_TypeCache(); + PyObject *key = PyString_FromString(type); + PyObject *obj = PyDict_GetItem(cache, key); + swig_type_info *descriptor; + if (obj) { + descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj); + } else { + swig_module_info *swig_module = SWIG_Python_GetModule(); + descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type); + if (descriptor) { + obj = PyCObject_FromVoidPtr(descriptor, NULL); + PyDict_SetItem(cache, key, obj); + Py_DECREF(obj); + } + } + Py_DECREF(key); + return descriptor; +} + +/* + For backward compatibility only +*/ +#define SWIG_POINTER_EXCEPTION 0 +#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) +#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) + +SWIGRUNTIME int +SWIG_Python_AddErrMesg(const char* mesg, int infront) +{ + if (PyErr_Occurred()) { + PyObject *type = 0; + PyObject *value = 0; + PyObject *traceback = 0; + PyErr_Fetch(&type, &value, &traceback); + if (value) { + PyObject *old_str = PyObject_Str(value); + Py_XINCREF(type); + PyErr_Clear(); + if (infront) { + PyErr_Format(type, "%s %s", mesg, PyString_AsString(old_str)); + } else { + PyErr_Format(type, "%s %s", PyString_AsString(old_str), mesg); + } + Py_DECREF(old_str); + } + return 1; + } else { + return 0; + } +} + +SWIGRUNTIME int +SWIG_Python_ArgFail(int argnum) +{ + if (PyErr_Occurred()) { + /* add information about failing argument */ + char mesg[256]; + PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); + return SWIG_Python_AddErrMesg(mesg, 1); + } else { + return 0; + } +} + +SWIGRUNTIMEINLINE const char * +PySwigObject_GetDesc(PyObject *self) +{ + PySwigObject *v = (PySwigObject *)self; + swig_type_info *ty = v ? v->ty : 0; + return ty ? ty->str : (char*)""; +} + +SWIGRUNTIME void +SWIG_Python_TypeError(const char *type, PyObject *obj) +{ + if (type) { +#if defined(SWIG_COBJECT_TYPES) + if (obj && PySwigObject_Check(obj)) { + const char *otype = (const char *) PySwigObject_GetDesc(obj); + if (otype) { + PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'PySwigObject(%s)' is received", + type, otype); + return; + } + } else +#endif + { + const char *otype = (obj ? obj->ob_type->tp_name : 0); + if (otype) { + PyObject *str = PyObject_Str(obj); + const char *cstr = str ? PyString_AsString(str) : 0; + if (cstr) { + PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", + type, otype, cstr); + } else { + PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received", + type, otype); + } + Py_XDECREF(str); + return; + } + } + PyErr_Format(PyExc_TypeError, "a '%s' is expected", type); + } else { + PyErr_Format(PyExc_TypeError, "unexpected type is received"); + } +} + + +/* Convert a pointer value, signal an exception on a type mismatch */ +SWIGRUNTIME void * +SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int argnum, int flags) { + void *result; + if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) { + PyErr_Clear(); + if (flags & SWIG_POINTER_EXCEPTION) { + SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); + SWIG_Python_ArgFail(argnum); + } + } + return result; +} + + +#ifdef __cplusplus +#if 0 +{ /* cc-mode */ +#endif +} +#endif + + + +#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) + +#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else + + + + #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0) + + +/* -------- TYPES TABLE (BEGIN) -------- */ + +#define SWIGTYPE_p_ColorCodes swig_types[0] +#define SWIGTYPE_p_Flow swig_types[1] +#define SWIGTYPE_p_GenParticle swig_types[2] +#define SWIGTYPE_p_GenVertex swig_types[3] +#define SWIGTYPE_p_HeavyIon swig_types[4] +#define SWIGTYPE_p_HepMC__FourVector swig_types[5] +#define SWIGTYPE_p_HepMC__GenEvent swig_types[6] +#define SWIGTYPE_p_HepMC__GenParticle swig_types[7] +#define SWIGTYPE_p_HepMC__GenVertex swig_types[8] +#define SWIGTYPE_p_HepMC__IO_BaseClass swig_types[9] +#define SWIGTYPE_p_HepMC__IO_GenEvent swig_types[10] +#define SWIGTYPE_p_HepMC__ThreeVector swig_types[11] +#define SWIGTYPE_p_LevelMap swig_types[12] +#define SWIGTYPE_p_LogMap swig_types[13] +#define SWIGTYPE_p_ParticleDataTable swig_types[14] +#define SWIGTYPE_p_PdfInfo swig_types[15] +#define SWIGTYPE_p_Polarization swig_types[16] +#define SWIGTYPE_p_Rivet__Analysis swig_types[17] +#define SWIGTYPE_p_Rivet__AnalysisHandler swig_types[18] +#define SWIGTYPE_p_Rivet__AnalysisLoader swig_types[19] +#define SWIGTYPE_p_Rivet__Event swig_types[20] +#define SWIGTYPE_p_Rivet__Log swig_types[21] +#define SWIGTYPE_p_Rivet__Particle swig_types[22] +#define SWIGTYPE_p_WeightContainer swig_types[23] +#define SWIGTYPE_p_allocator_type swig_types[24] +#define SWIGTYPE_p_char swig_types[25] +#define SWIGTYPE_p_const_reference swig_types[26] +#define SWIGTYPE_p_difference_type swig_types[27] +#define SWIGTYPE_p_first_type swig_types[28] +#define SWIGTYPE_p_key_type swig_types[29] +#define SWIGTYPE_p_long swig_types[30] +#define SWIGTYPE_p_mapped_type swig_types[31] +#define SWIGTYPE_p_p_HepMC__GenEvent swig_types[32] +#define SWIGTYPE_p_p_ParticleDataTable swig_types[33] +#define SWIGTYPE_p_p_PyObject swig_types[34] +#define SWIGTYPE_p_particles_in_const_iterator swig_types[35] +#define SWIGTYPE_p_particles_out_const_iterator swig_types[36] +#define SWIGTYPE_p_reference swig_types[37] +#define SWIGTYPE_p_second_type swig_types[38] +#define SWIGTYPE_p_size_type swig_types[39] +#define SWIGTYPE_p_std__invalid_argument swig_types[40] +#define SWIGTYPE_p_std__ios__openmode swig_types[41] +#define SWIGTYPE_p_std__istream swig_types[42] +#define SWIGTYPE_p_std__lessTstd__string_t swig_types[43] +#define SWIGTYPE_p_std__mapTRivet__HistoFormat_std__string_std__lessTRivet__HistoFormat_t_std__allocatorTstd__pairTRivet__HistoFormat_const_std__string_t_t_t swig_types[44] +#define SWIGTYPE_p_std__mapTlong_std__string_std__lessTlong_t_std__allocatorTstd__pairTlong_const_std__string_t_t_t swig_types[45] +#define SWIGTYPE_p_std__mapTstd__string_Rivet__HistoFormat_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_Rivet__HistoFormat_t_t_t swig_types[46] +#define SWIGTYPE_p_std__mapTstd__string_const_int_std__lessTstd__string_const_t_std__allocatorTstd__pairTstd__string_const_const_int_t_t_t swig_types[47] +#define SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t swig_types[48] +#define SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t__allocator_type swig_types[49] +#define SWIGTYPE_p_std__mapTstd__string_long_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_long_t_t_t swig_types[50] +#define SWIGTYPE_p_std__ostream swig_types[51] +#define SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t swig_types[52] +#define SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t swig_types[53] +#define SWIGTYPE_p_std__pairTRivet__Particle_Rivet__Particle_t swig_types[54] +#define SWIGTYPE_p_std__pairTlong_long_t swig_types[55] +#define SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t swig_types[56] +#define SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__allocator_type swig_types[57] +#define SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type swig_types[58] +#define SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t swig_types[59] +#define SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__allocator_type swig_types[60] +#define SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t swig_types[61] +#define SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__allocator_type swig_types[62] +#define SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type swig_types[63] +#define SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t swig_types[64] +#define SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__allocator_type swig_types[65] +#define SWIGTYPE_p_std__vectorTRivet__HistoFormat_std__allocatorTRivet__HistoFormat_t_t swig_types[66] +#define SWIGTYPE_p_std__vectorTRivet__Particle_std__allocatorTRivet__Particle_t_t swig_types[67] +#define SWIGTYPE_p_std__vectorTlong_std__allocatorTlong_t_t swig_types[68] +#define SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t swig_types[69] +#define SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t__allocator_type swig_types[70] +#define SWIGTYPE_p_swig__PySwigIterator swig_types[71] +#define SWIGTYPE_p_value_type swig_types[72] +#define SWIGTYPE_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type swig_types[73] +#define SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type swig_types[74] +#define SWIGTYPE_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type swig_types[75] +#define SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type swig_types[76] +static swig_type_info *swig_types[78]; +static swig_module_info swig_module = {swig_types, 77, 0, 0, 0, 0}; +#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) +#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) + +/* -------- TYPES TABLE (END) -------- */ + +#if (PY_VERSION_HEX <= 0x02000000) +# if !defined(SWIG_PYTHON_CLASSIC) +# error "This python version requires swig to be run with the '-classic' option" +# endif +#endif + +/*----------------------------------------------- + @(target):= _rivet.so + ------------------------------------------------*/ +#define SWIG_init init_rivet + +#define SWIG_name "_rivet" + +#define SWIGVERSION 0x010333 +#define SWIG_VERSION SWIGVERSION + + +#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a)) +#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a)) + + +#include <stdexcept> + + +namespace swig { + class PyObject_ptr { + protected: + PyObject *_obj; + + public: + PyObject_ptr() :_obj(0) + { + } + + PyObject_ptr(const PyObject_ptr& item) : _obj(item._obj) + { + Py_XINCREF(_obj); + } + + PyObject_ptr(PyObject *obj, bool initial_ref = true) :_obj(obj) + { + if (initial_ref) Py_XINCREF(_obj); + } + + PyObject_ptr & operator=(const PyObject_ptr& item) + { + Py_XINCREF(item._obj); + Py_XDECREF(_obj); + _obj = item._obj; + return *this; + } + + ~PyObject_ptr() + { + Py_XDECREF(_obj); + } + + operator PyObject *() const + { + return _obj; + } + + PyObject *operator->() const + { + return _obj; + } + }; +} + + +namespace swig { + struct PyObject_var : PyObject_ptr { + PyObject_var(PyObject* obj = 0) : PyObject_ptr(obj, false) { } + + PyObject_var & operator = (PyObject* obj) + { + Py_XDECREF(_obj); + _obj = obj; + return *this; + } + }; +} + + + #define SWIG_FILE_WITH_INIT + #include "Rivet/Analysis.hh" + #include "Rivet/AnalysisHandler.hh" + #include "Rivet/AnalysisLoader.hh" + #include "Rivet/Tools/Logging.hh" + #include "Rivet/Event.hh" + #include "Rivet/Particle.hh" + #include "Rivet/ParticleName.hh" + #include "Rivet/Projections/Beam.hh" + + + #include "HepMC/GenEvent.h" + #include "HepMC/GenVertex.h" + #include "HepMC/GenParticle.h" + #include "HepMC/IO_GenEvent.h" + #include "HepMC/SimpleVector.h" + #include <sstream> + using namespace HepMC; + using namespace std; + + std::vector<HepMC::GenParticle*> _fsParticles(const HepMC::GenEvent& evt) { + std::vector<HepMC::GenParticle*> fsps; + for (HepMC::GenEvent::particle_const_iterator p = evt.particles_begin(); p != evt.particles_end(); ++p) { + if (!(*p)->end_vertex() && (*p)->status() == 1) { + fsps.push_back(*p); + } + } + return fsps; + } + + + + +#include <string> + + +#include <iostream> + + +#include <stdexcept> + + + +#if defined(__SUNPRO_CC) && defined(_RWSTD_VER) +# define SWIG_STD_NOASSIGN_STL +# define SWIG_STD_NOINSERT_TEMPLATE_STL +# define SWIG_STD_NOITERATOR_TRAITS_STL +#endif + +#if defined(__GNUC__) +# if __GNUC__ == 2 && __GNUC_MINOR <= 96 +# define SWIG_STD_NOMODERN_STL +# endif +#endif + + + + +#include <string> +#include <stdexcept> + + +namespace swig { + struct stop_iteration { + }; + + struct PySwigIterator { + private: + PyObject_ptr _seq; + + protected: + PySwigIterator(PyObject *seq) : _seq(seq) + { + } + + public: + virtual ~PySwigIterator() {} + + // Access iterator method, required by Python + virtual PyObject *value() const = 0; + + // Forward iterator method, required by Python + virtual PySwigIterator *incr(size_t n = 1) = 0; + + // Backward iterator method, very common in C++, but not required in Python + virtual PySwigIterator *decr(size_t n = 1) + { + throw stop_iteration(); + } + + // Random access iterator methods, but not required in Python + virtual ptrdiff_t distance(const PySwigIterator &x) const + { + throw std::invalid_argument("operation not supported"); + } + + virtual bool equal (const PySwigIterator &x) const + { + throw std::invalid_argument("operation not supported"); + } + + // C++ common/needed methods + virtual PySwigIterator *copy() const = 0; + + PyObject *next() + { + PyObject *obj = value(); + incr(); + return obj; + } + + PyObject *previous() + { + decr(); + return value(); + } + + PySwigIterator *advance(ptrdiff_t n) + { + return (n > 0) ? incr(n) : decr(-n); + } + + bool operator == (const PySwigIterator& x) const + { + return equal(x); + } + + bool operator != (const PySwigIterator& x) const + { + return ! operator==(x); + } + + PySwigIterator& operator += (ptrdiff_t n) + { + return *advance(n); + } + + PySwigIterator& operator -= (ptrdiff_t n) + { + return *advance(-n); + } + + PySwigIterator* operator + (ptrdiff_t n) const + { + return copy()->advance(n); + } + + PySwigIterator* operator - (ptrdiff_t n) const + { + return copy()->advance(-n); + } + + ptrdiff_t operator - (const PySwigIterator& x) const + { + return x.distance(*this); + } + + static swig_type_info* descriptor() { + static int init = 0; + static swig_type_info* desc = 0; + if (!init) { + desc = SWIG_TypeQuery("swig::PySwigIterator *"); + init = 1; + } + return desc; + } + }; +} + + +SWIGINTERN int +SWIG_AsVal_double (PyObject *obj, double *val) +{ + int res = SWIG_TypeError; + if (PyFloat_Check(obj)) { + if (val) *val = PyFloat_AsDouble(obj); + return SWIG_OK; + } else if (PyInt_Check(obj)) { + if (val) *val = PyInt_AsLong(obj); + return SWIG_OK; + } else if (PyLong_Check(obj)) { + double v = PyLong_AsDouble(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + } + } +#ifdef SWIG_PYTHON_CAST_MODE + { + int dispatch = 0; + double d = PyFloat_AsDouble(obj); + if (!PyErr_Occurred()) { + if (val) *val = d; + return SWIG_AddCast(SWIG_OK); + } else { + PyErr_Clear(); + } + if (!dispatch) { + long v = PyLong_AsLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_AddCast(SWIG_AddCast(SWIG_OK)); + } else { + PyErr_Clear(); + } + } + } +#endif + return res; +} + + +#include <float.h> + + +#include <math.h> + + +SWIGINTERNINLINE int +SWIG_CanCastAsInteger(double *d, double min, double max) { + double x = *d; + if ((min <= x && x <= max)) { + double fx = floor(x); + double cx = ceil(x); + double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */ + if ((errno == EDOM) || (errno == ERANGE)) { + errno = 0; + } else { + double summ, reps, diff; + if (rd < x) { + diff = x - rd; + } else if (rd > x) { + diff = rd - x; + } else { + return 1; + } + summ = rd + x; + reps = diff/summ; + if (reps < 8*DBL_EPSILON) { + *d = rd; + return 1; + } + } + } + return 0; +} + + +SWIGINTERN int +SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) +{ + if (PyInt_Check(obj)) { + long v = PyInt_AsLong(obj); + if (v >= 0) { + if (val) *val = v; + return SWIG_OK; + } else { + return SWIG_OverflowError; + } + } else if (PyLong_Check(obj)) { + unsigned long v = PyLong_AsUnsignedLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + } + } +#ifdef SWIG_PYTHON_CAST_MODE + { + int dispatch = 0; + unsigned long v = PyLong_AsUnsignedLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_AddCast(SWIG_OK); + } else { + PyErr_Clear(); + } + if (!dispatch) { + double d; + int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); + if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) { + if (val) *val = (unsigned long)(d); + return res; + } + } + } +#endif + return SWIG_TypeError; +} + + +SWIGINTERNINLINE int +SWIG_AsVal_size_t (PyObject * obj, size_t *val) +{ + unsigned long v; + int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); + if (SWIG_IsOK(res) && val) *val = static_cast< size_t >(v); + return res; +} + + + #define SWIG_From_long PyInt_FromLong + + +SWIGINTERNINLINE PyObject * +SWIG_From_ptrdiff_t (ptrdiff_t value) +{ + return SWIG_From_long (static_cast< long >(value)); +} + + +SWIGINTERNINLINE PyObject* + SWIG_From_bool (bool value) +{ + return PyBool_FromLong(value ? 1 : 0); +} + + +SWIGINTERN int +SWIG_AsVal_long (PyObject *obj, long* val) +{ + if (PyInt_Check(obj)) { + if (val) *val = PyInt_AsLong(obj); + return SWIG_OK; + } else if (PyLong_Check(obj)) { + long v = PyLong_AsLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_OK; + } else { + PyErr_Clear(); + } + } +#ifdef SWIG_PYTHON_CAST_MODE + { + int dispatch = 0; + long v = PyInt_AsLong(obj); + if (!PyErr_Occurred()) { + if (val) *val = v; + return SWIG_AddCast(SWIG_OK); + } else { + PyErr_Clear(); + } + if (!dispatch) { + double d; + int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); + if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) { + if (val) *val = (long)(d); + return res; + } + } + } +#endif + return SWIG_TypeError; +} + + +SWIGINTERNINLINE int +SWIG_AsVal_ptrdiff_t (PyObject * obj, ptrdiff_t *val) +{ + long v; + int res = SWIG_AsVal_long (obj, val ? &v : 0); + if (SWIG_IsOK(res) && val) *val = static_cast< ptrdiff_t >(v); + return res; +} + + +#include <stdexcept> + + +#include <algorithm> + + +#include <vector> + + +#include <utility> + + +#include <map> +#include <algorithm> +#include <stdexcept> + + + #define SWIG_From_double PyFloat_FromDouble + +SWIGINTERN std::string HepMC_FourVector___str__(HepMC::FourVector *self){ + std::stringstream ss; + ss //<< "HepMC::FourVector { " + << "(" + << self->t() << "; " + << self->x() << ", " + << self->y() << ", " + << self->z() << ")"; + //<< " }"; + return ss.str(); + } + +SWIGINTERN swig_type_info* +SWIG_pchar_descriptor(void) +{ + static int init = 0; + static swig_type_info* info = 0; + if (!init) { + info = SWIG_TypeQuery("_p_char"); + init = 1; + } + return info; +} + + +SWIGINTERNINLINE PyObject * +SWIG_FromCharPtrAndSize(const char* carray, size_t size) +{ + if (carray) { + if (size > INT_MAX) { + swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); + return pchar_descriptor ? + SWIG_NewPointerObj(const_cast< char * >(carray), pchar_descriptor, 0) : SWIG_Py_Void(); + } else { + return PyString_FromStringAndSize(carray, static_cast< int >(size)); + } + } else { + return SWIG_Py_Void(); + } +} + + +SWIGINTERNINLINE PyObject * +SWIG_From_std_string (const std::string& s) +{ + if (s.size()) { + return SWIG_FromCharPtrAndSize(s.data(), s.size()); + } else { + return SWIG_FromCharPtrAndSize(s.c_str(), 0); + } +} + + +#include <limits.h> +#if !defined(SWIG_NO_LLONG_MAX) +# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) +# define LLONG_MAX __LONG_LONG_MAX__ +# define LLONG_MIN (-LLONG_MAX - 1LL) +# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) +# endif +#endif + + +SWIGINTERN int +SWIG_AsVal_int (PyObject * obj, int *val) +{ + long v; + int res = SWIG_AsVal_long (obj, &v); + if (SWIG_IsOK(res)) { + if ((v < INT_MIN || v > INT_MAX)) { + return SWIG_OverflowError; + } else { + if (val) *val = static_cast< int >(v); + } + } + return res; +} + + +SWIGINTERNINLINE PyObject * +SWIG_From_int (int value) +{ + return SWIG_From_long (value); +} + +SWIGINTERN std::string HepMC_GenEvent___str__(HepMC::GenEvent *self){ + std::ostringstream ss; + self->print(ss); + return ss.str(); + } +SWIGINTERN std::string HepMC_GenEvent_summary(HepMC::GenEvent *self){ + std::ostringstream ss; + ss << "HepMC::GenEvent { " + << self->particles_size() << " particles " + << "(" << _fsParticles(* self).size() << " in FS), " + << self->vertices_size() << " vertices }"; + return ss.str(); + } +SWIGINTERN std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > HepMC_GenEvent_particles(HepMC::GenEvent *self){ + return std::vector<HepMC::GenParticle*>(self->particles_begin(), self->particles_end()); + } +SWIGINTERN std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > HepMC_GenEvent_vertices(HepMC::GenEvent *self){ + return std::vector<HepMC::GenVertex*>(self->vertices_begin(), self->vertices_end()); + } +SWIGINTERN std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > HepMC_GenEvent_fsParticles(HepMC::GenEvent *self){ + return _fsParticles(* self); + } +SWIGINTERN std::string HepMC_GenParticle___str__(HepMC::GenParticle const *self){ + std::stringstream ss; + HepMC::FourVector p = self->momentum(); + ss << "HepMC::GenParticle { " + << self->pdg_id() << "; p = (" + << p.t() << "; " + << p.x() << ", " + << p.y() << ", " + << p.z() << ") " + << "}"; + return ss.str(); + } +SWIGINTERN std::string HepMC_GenVertex___str__(HepMC::GenVertex const *self){ + std::stringstream ss; + HepMC::FourVector p = self->position(); + ss << "HepMC::GenVertex { " + << "(" + << p.t() << "; " + << p.x() << ", " + << p.y() << ", " + << p.z() << ") " + << "}"; + return ss.str(); + } +SWIGINTERN std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > HepMC_GenVertex_particles_in(HepMC::GenVertex const *self){ + return vector<const GenParticle*>(self->particles_in_const_begin(), self->particles_in_const_end()); + } +SWIGINTERN std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > HepMC_GenVertex_particles_out(HepMC::GenVertex const *self){ + return vector<const HepMC::GenParticle*>(self->particles_out_const_begin(), self->particles_out_const_end()); + } +SWIGINTERN std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > HepMC_GenVertex_particles__SWIG_0(HepMC::GenVertex *self,HepMC::IteratorRange range=HepMC::relatives){ + return vector<HepMC::GenParticle*>(self->particles_begin(range), self->particles_end(range)); + } +SWIGINTERN std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > HepMC_GenVertex_vertices__SWIG_0(HepMC::GenVertex *self,HepMC::IteratorRange range=HepMC::relatives){ + return vector<HepMC::GenVertex*>(self->vertices_begin(range), self->vertices_end(range)); + } + +SWIGINTERN int +SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc) +{ + if (PyString_Check(obj)) { + char *cstr; Py_ssize_t len; + PyString_AsStringAndSize(obj, &cstr, &len); + if (cptr) { + if (alloc) { + /* + In python the user should not be able to modify the inner + string representation. To warranty that, if you define + SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string + buffer is always returned. + + The default behavior is just to return the pointer value, + so, be careful. + */ +#if defined(SWIG_PYTHON_SAFE_CSTRINGS) + if (*alloc != SWIG_OLDOBJ) +#else + if (*alloc == SWIG_NEWOBJ) +#endif + { + *cptr = reinterpret_cast< char* >(memcpy((new char[len + 1]), cstr, sizeof(char)*(len + 1))); + *alloc = SWIG_NEWOBJ; + } + else { + *cptr = cstr; + *alloc = SWIG_OLDOBJ; + } + } else { + *cptr = PyString_AsString(obj); + } + } + if (psize) *psize = len + 1; + return SWIG_OK; + } else { + swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); + if (pchar_descriptor) { + void* vptr = 0; + if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) { + if (cptr) *cptr = (char *) vptr; + if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0; + if (alloc) *alloc = SWIG_OLDOBJ; + return SWIG_OK; + } + } + } + return SWIG_TypeError; +} + + + + + +SWIGINTERN int +SWIG_AsPtr_std_string (PyObject * obj, std::string **val) +{ + char* buf = 0 ; size_t size = 0; int alloc = SWIG_OLDOBJ; + if (SWIG_IsOK((SWIG_AsCharPtrAndSize(obj, &buf, &size, &alloc)))) { + if (buf) { + if (val) *val = new std::string(buf, size - 1); + if (alloc == SWIG_NEWOBJ) delete[] buf; + return SWIG_NEWOBJ; + } else { + if (val) *val = 0; + return SWIG_OLDOBJ; + } + } else { + static int init = 0; + static swig_type_info* descriptor = 0; + if (!init) { + descriptor = SWIG_TypeQuery("std::string" " *"); + init = 1; + } + if (descriptor) { + std::string *vptr; + int res = SWIG_ConvertPtr(obj, (void**)&vptr, descriptor, 0); + if (SWIG_IsOK(res) && val) *val = vptr; + return res; + } + } + return SWIG_ERROR; +} + +SWIGINTERN HepMC::IO_GenEvent *new_HepMC_IO_GenEvent__SWIG_5(std::string const &filename,std::string const &mode){ + if (filename == "-") { + if (mode == "w") return new IO_GenEvent(std::cout); + if (mode == "r") return new IO_GenEvent(std::cin); + } else { + if (mode == "w") return new IO_GenEvent(filename.c_str(), std::ios::out); + if (mode == "r") return new IO_GenEvent(filename.c_str(), std::ios::in); + } + throw runtime_error("Tried to open an IO_GenEvent with an invalid mode string: " + mode); + return 0; + } +SWIGINTERN HepMC::GenEvent HepMC_IO_GenEvent_get_next_event(HepMC::IO_GenEvent *self){ + HepMC::GenEvent rtn; + self->fill_next_event(&rtn); + return rtn; + } + +namespace swig { + template <class Type> + struct noconst_traits { + typedef Type noconst_type; + }; + + template <class Type> + struct noconst_traits<const Type> { + typedef Type noconst_type; + }; + + /* + type categories + */ + struct pointer_category { }; + struct value_category { }; + + /* + General traits that provides type_name and type_info + */ + template <class Type> struct traits { }; + + template <class Type> + inline const char* type_name() { + return traits<typename noconst_traits<Type >::noconst_type >::type_name(); + } + + template <class Type> + struct traits_info { + static swig_type_info *type_query(std::string name) { + name += " *"; + return SWIG_TypeQuery(name.c_str()); + } + static swig_type_info *type_info() { + static swig_type_info *info = type_query(type_name<Type>()); + return info; + } + }; + + template <class Type> + inline swig_type_info *type_info() { + return traits_info<Type>::type_info(); + } + + /* + Partial specialization for pointers + */ + template <class Type> struct traits <Type *> { + typedef pointer_category category; + static std::string make_ptr_name(const char* name) { + std::string ptrname = name; + ptrname += " *"; + return ptrname; + } + static const char* type_name() { + static std::string name = make_ptr_name(swig::type_name<Type>()); + return name.c_str(); + } + }; + + template <class Type, class Category> + struct traits_as { }; + + template <class Type, class Category> + struct traits_check { }; + +} + + +namespace swig { + /* + Traits that provides the from method + */ + template <class Type> struct traits_from_ptr { + static PyObject *from(Type *val, int owner = 0) { + return SWIG_NewPointerObj(val, type_info<Type>(), owner); + } + }; + + template <class Type> struct traits_from { + static PyObject *from(const Type& val) { + return traits_from_ptr<Type>::from(new Type(val), 1); + } + }; + + template <class Type> struct traits_from<Type *> { + static PyObject *from(Type* val) { + return traits_from_ptr<Type>::from(val, 0); + } + }; + + template <class Type> struct traits_from<const Type *> { + static PyObject *from(const Type* val) { + return traits_from_ptr<Type>::from(const_cast<Type*>(val), 0); + } + }; + + + template <class Type> + inline PyObject *from(const Type& val) { + return traits_from<Type>::from(val); + } + + template <class Type> + inline PyObject *from_ptr(Type* val, int owner) { + return traits_from_ptr<Type>::from(val, owner); + } + + /* + Traits that provides the asval/as/check method + */ + template <class Type> + struct traits_asptr { + static int asptr(PyObject *obj, Type **val) { + Type *p; + int res = (SWIG_ConvertPtr(obj, (void**)&p, type_info<Type>(), 0) == SWIG_OK) ? SWIG_OLDOBJ : 0; + if (SWIG_IsOK(res)) { + if (val) *val = p; + } + return res; + } + }; + + template <class Type> + inline int asptr(PyObject *obj, Type **vptr) { + return traits_asptr<Type>::asptr(obj, vptr); + } + + template <class Type> + struct traits_asval { + static int asval(PyObject *obj, Type *val) { + if (val) { + Type *p = 0; + int res = traits_asptr<Type>::asptr(obj, &p); + if (!SWIG_IsOK(res)) return res; + if (p) { + typedef typename noconst_traits<Type>::noconst_type noconst_type; + *(const_cast<noconst_type*>(val)) = *p; + if (SWIG_IsNewObj(res)){ + delete p; + res = SWIG_DelNewMask(res); + } + return res; + } else { + return SWIG_ERROR; + } + } else { + return traits_asptr<Type>::asptr(obj, (Type **)(0)); + } + } + }; + + template <class Type> struct traits_asval<Type*> { + static int asval(PyObject *obj, Type **val) { + if (val) { + typedef typename noconst_traits<Type>::noconst_type noconst_type; + noconst_type *p = 0; + int res = traits_asptr<noconst_type>::asptr(obj, &p); + if (SWIG_IsOK(res)) { + *(const_cast<noconst_type**>(val)) = p; + } + return res; + } else { + return traits_asptr<Type>::asptr(obj, (Type **)(0)); + } + } + }; + + template <class Type> + inline int asval(PyObject *obj, Type *val) { + return traits_asval<Type>::asval(obj, val); + } + + template <class Type> + struct traits_as<Type, value_category> { + static Type as(PyObject *obj, bool throw_error) { + Type v; + int res = asval(obj, &v); + if (!obj || !SWIG_IsOK(res)) { + if (!PyErr_Occurred()) { + SWIG_Error(SWIG_TypeError, swig::type_name<Type>()); + } + if (throw_error) throw std::invalid_argument("bad type"); + } + return v; + } + }; + + template <class Type> + struct traits_as<Type, pointer_category> { + static Type as(PyObject *obj, bool throw_error) { + Type *v = 0; + int res = (obj ? traits_asptr<Type>::asptr(obj, &v) : SWIG_ERROR); + if (SWIG_IsOK(res) && v) { + if (SWIG_IsNewObj(res)) { + Type r(*v); + delete v; + return r; + } else { + return *v; + } + } else { + // Uninitialized return value, no Type() constructor required. + static Type *v_def = (Type*) malloc(sizeof(Type)); + if (!PyErr_Occurred()) { + SWIG_Error(SWIG_TypeError, swig::type_name<Type>()); + } + if (throw_error) throw std::invalid_argument("bad type"); + memset(v_def,0,sizeof(Type)); + return *v_def; + } + } + }; + + template <class Type> + struct traits_as<Type*, pointer_category> { + static Type* as(PyObject *obj, bool throw_error) { + Type *v = 0; + int res = (obj ? traits_asptr<Type>::asptr(obj, &v) : SWIG_ERROR); + if (SWIG_IsOK(res)) { + return v; + } else { + if (!PyErr_Occurred()) { + SWIG_Error(SWIG_TypeError, swig::type_name<Type>()); + } + if (throw_error) throw std::invalid_argument("bad type"); + return 0; + } + } + }; + + template <class Type> + inline Type as(PyObject *obj, bool te = false) { + return traits_as<Type, typename traits<Type>::category>::as(obj, te); + } + + template <class Type> + struct traits_check<Type, value_category> { + static bool check(PyObject *obj) { + int res = obj ? asval(obj, (Type *)(0)) : SWIG_ERROR; + return SWIG_IsOK(res) ? true : false; + } + }; + + template <class Type> + struct traits_check<Type, pointer_category> { + static bool check(PyObject *obj) { + int res = obj ? asptr(obj, (Type **)(0)) : SWIG_ERROR; + return SWIG_IsOK(res) ? true : false; + } + }; + + template <class Type> + inline bool check(PyObject *obj) { + return traits_check<Type, typename traits<Type>::category>::check(obj); + } +} + + +#include <functional> + +namespace std { + template <> + struct less <PyObject *>: public binary_function<PyObject *, PyObject *, bool> + { + bool + operator()(PyObject * v, PyObject *w) const + { + bool res; + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + res = PyObject_Compare(v, w) < 0; + SWIG_PYTHON_THREAD_END_BLOCK; + return res; + } + }; + + template <> + struct less <swig::PyObject_ptr>: public binary_function<swig::PyObject_ptr, swig::PyObject_ptr, bool> + { + bool + operator()(const swig::PyObject_ptr& v, const swig::PyObject_ptr& w) const + { + return std::less<PyObject *>()(v, w); + } + }; + + template <> + struct less <swig::PyObject_var>: public binary_function<swig::PyObject_var, swig::PyObject_var, bool> + { + bool + operator()(const swig::PyObject_var& v, const swig::PyObject_var& w) const + { + return std::less<PyObject *>()(v, w); + } + }; + +} + +namespace swig { + template <> struct traits<PyObject *> { + typedef value_category category; + static const char* type_name() { return "PyObject *"; } + }; + + template <> struct traits_asval<PyObject * > { + typedef PyObject * value_type; + static int asval(PyObject *obj, value_type *val) { + if (val) *val = obj; + return SWIG_OK; + } + }; + + template <> + struct traits_check<PyObject *, value_category> { + static bool check(PyObject *) { + return true; + } + }; + + template <> struct traits_from<PyObject *> { + typedef PyObject * value_type; + static PyObject *from(const value_type& val) { + Py_XINCREF(val); + return val; + } + }; + +} + +namespace swig { + inline size_t + check_index(ptrdiff_t i, size_t size, bool insert = false) { + if ( i < 0 ) { + if ((size_t) (-i) <= size) + return (size_t) (i + size); + } else if ( (size_t) i < size ) { + return (size_t) i; + } else if (insert && ((size_t) i == size)) { + return size; + } + + throw std::out_of_range("index out of range"); + } + + inline size_t + slice_index(ptrdiff_t i, size_t size) { + if ( i < 0 ) { + if ((size_t) (-i) <= size) { + return (size_t) (i + size); + } else { + throw std::out_of_range("index out of range"); + } + } else { + return ( (size_t) i < size ) ? ((size_t) i) : size; + } + } + + template <class Sequence, class Difference> + inline typename Sequence::iterator + getpos(Sequence* self, Difference i) { + typename Sequence::iterator pos = self->begin(); + std::advance(pos, check_index(i,self->size())); + return pos; + } + + template <class Sequence, class Difference> + inline typename Sequence::const_iterator + cgetpos(const Sequence* self, Difference i) { + typename Sequence::const_iterator pos = self->begin(); + std::advance(pos, check_index(i,self->size())); + return pos; + } + + template <class Sequence, class Difference> + inline Sequence* + getslice(const Sequence* self, Difference i, Difference j) { + typename Sequence::size_type size = self->size(); + typename Sequence::size_type ii = swig::check_index(i, size); + typename Sequence::size_type jj = swig::slice_index(j, size); + + if (jj > ii) { + typename Sequence::const_iterator vb = self->begin(); + typename Sequence::const_iterator ve = self->begin(); + std::advance(vb,ii); + std::advance(ve,jj); + return new Sequence(vb, ve); + } else { + return new Sequence(); + } + } + + template <class Sequence, class Difference, class InputSeq> + inline void + setslice(Sequence* self, Difference i, Difference j, const InputSeq& v) { + typename Sequence::size_type size = self->size(); + typename Sequence::size_type ii = swig::check_index(i, size, true); + typename Sequence::size_type jj = swig::slice_index(j, size); + if (jj < ii) jj = ii; + size_t ssize = jj - ii; + if (ssize <= v.size()) { + typename Sequence::iterator sb = self->begin(); + typename InputSeq::const_iterator vmid = v.begin(); + std::advance(sb,ii); + std::advance(vmid, jj - ii); + self->insert(std::copy(v.begin(), vmid, sb), vmid, v.end()); + } else { + typename Sequence::iterator sb = self->begin(); + typename Sequence::iterator se = self->begin(); + std::advance(sb,ii); + std::advance(se,jj); + self->erase(sb,se); + self->insert(sb, v.begin(), v.end()); + } + } + + template <class Sequence, class Difference> + inline void + delslice(Sequence* self, Difference i, Difference j) { + typename Sequence::size_type size = self->size(); + typename Sequence::size_type ii = swig::check_index(i, size, true); + typename Sequence::size_type jj = swig::slice_index(j, size); + if (jj > ii) { + typename Sequence::iterator sb = self->begin(); + typename Sequence::iterator se = self->begin(); + std::advance(sb,ii); + std::advance(se,jj); + self->erase(sb,se); + } + } +} + + +#if !defined(SWIG_STD_NOITERATOR_TRAITS_STL) +#include <iterator> +#else +namespace std { + template <class Iterator> + struct iterator_traits { + typedef ptrdiff_t difference_type; + typedef typename Iterator::value_type value_type; + }; + +#if defined(__SUNPRO_CC) && defined(_RWSTD_VER) + template <class Iterator, class Category,class T, class Reference, class Pointer, class Distance> + struct iterator_traits<__reverse_bi_iterator<Iterator,Category,T,Reference,Pointer,Distance> > { + typedef Distance difference_type; + typedef T value_type; + }; +#endif + + template <class T> + struct iterator_traits<T*> { + typedef T value_type; + typedef ptrdiff_t difference_type; + }; + + template<typename _InputIterator> + inline typename iterator_traits<_InputIterator>::difference_type + distance(_InputIterator __first, _InputIterator __last) + { + typename iterator_traits<_InputIterator>::difference_type __n = 0; + while (__first != __last) { + ++__first; ++__n; + } + return __n; + } + +} +#endif + + +namespace swig { + template<typename OutIterator> + class PySwigIterator_T : public PySwigIterator + { + public: + typedef OutIterator out_iterator; + typedef typename std::iterator_traits<out_iterator>::value_type value_type; + typedef PySwigIterator_T<out_iterator> self_type; + + PySwigIterator_T(out_iterator curr, PyObject *seq) + : PySwigIterator(seq), current(curr) + { + } + + const out_iterator& get_current() const + { + return current; + } + + + bool equal (const PySwigIterator &iter) const + { + const self_type *iters = dynamic_cast<const self_type *>(&iter); + if (iters) { + return (current == iters->get_current()); + } else { + throw std::invalid_argument("bad iterator type"); + } + } + + ptrdiff_t distance(const PySwigIterator &iter) const + { + const self_type *iters = dynamic_cast<const self_type *>(&iter); + if (iters) { + return std::distance(current, iters->get_current()); + } else { + throw std::invalid_argument("bad iterator type"); + } + } + + protected: + out_iterator current; + }; + + template <class ValueType> + struct from_oper + { + typedef const ValueType& argument_type; + typedef PyObject *result_type; + result_type operator()(argument_type v) const + { + return swig::from(v); + } + }; + + template<typename OutIterator, + typename ValueType = typename std::iterator_traits<OutIterator>::value_type, + typename FromOper = from_oper<ValueType> > + class PySwigIteratorOpen_T : public PySwigIterator_T<OutIterator> + { + public: + FromOper from; + typedef OutIterator out_iterator; + typedef ValueType value_type; + typedef PySwigIterator_T<out_iterator> base; + typedef PySwigIteratorOpen_T<OutIterator, ValueType, FromOper> self_type; + + PySwigIteratorOpen_T(out_iterator curr, PyObject *seq) + : PySwigIterator_T<OutIterator>(curr, seq) + { + } + + PyObject *value() const { + return from(static_cast<const value_type&>(*(base::current))); + } + + PySwigIterator *copy() const + { + return new self_type(*this); + } + + PySwigIterator *incr(size_t n = 1) + { + while (n--) { + ++base::current; + } + return this; + } + + PySwigIterator *decr(size_t n = 1) + { + while (n--) { + --base::current; + } + return this; + } + }; + + template<typename OutIterator, + typename ValueType = typename std::iterator_traits<OutIterator>::value_type, + typename FromOper = from_oper<ValueType> > + class PySwigIteratorClosed_T : public PySwigIterator_T<OutIterator> + { + public: + FromOper from; + typedef OutIterator out_iterator; + typedef ValueType value_type; + typedef PySwigIterator_T<out_iterator> base; + typedef PySwigIteratorClosed_T<OutIterator, ValueType, FromOper> self_type; + + PySwigIteratorClosed_T(out_iterator curr, out_iterator first, out_iterator last, PyObject *seq) + : PySwigIterator_T<OutIterator>(curr, seq), begin(first), end(last) + { + } + + PyObject *value() const { + if (base::current == end) { + throw stop_iteration(); + } else { + return from(static_cast<const value_type&>(*(base::current))); + } + } + + PySwigIterator *copy() const + { + return new self_type(*this); + } + + PySwigIterator *incr(size_t n = 1) + { + while (n--) { + if (base::current == end) { + throw stop_iteration(); + } else { + ++base::current; + } + } + return this; + } + + PySwigIterator *decr(size_t n = 1) + { + while (n--) { + if (base::current == begin) { + throw stop_iteration(); + } else { + --base::current; + } + } + return this; + } + + private: + out_iterator begin; + out_iterator end; + }; + + template<typename OutIter> + inline PySwigIterator* + make_output_iterator(const OutIter& current, const OutIter& begin,const OutIter& end, PyObject *seq = 0) + { + return new PySwigIteratorClosed_T<OutIter>(current, begin, end, seq); + } + + template<typename OutIter> + inline PySwigIterator* + make_output_iterator(const OutIter& current, PyObject *seq = 0) + { + return new PySwigIteratorOpen_T<OutIter>(current, seq); + } +} + + +namespace swig +{ + template <class T> + struct PySequence_Ref + { + PySequence_Ref(PyObject* seq, int index) + : _seq(seq), _index(index) + { + } + + operator T () const + { + swig::PyObject_var item = PySequence_GetItem(_seq, _index); + try { + return swig::as<T>(item, true); + } catch (std::exception& e) { + char msg[1024]; + sprintf(msg, "in sequence element %d ", _index); + if (!PyErr_Occurred()) { + SWIG_Error(SWIG_TypeError, swig::type_name<T>()); + } + SWIG_Python_AddErrorMsg(msg); + SWIG_Python_AddErrorMsg(e.what()); + throw; + } + } + + PySequence_Ref& operator=(const T& v) + { + PySequence_SetItem(_seq, _index, swig::from<T>(v)); + return *this; + } + + private: + PyObject* _seq; + int _index; + }; + + template <class T> + struct PySequence_ArrowProxy + { + PySequence_ArrowProxy(const T& x): m_value(x) {} + const T* operator->() const { return &m_value; } + operator const T*() const { return &m_value; } + T m_value; + }; + + template <class T, class Reference > + struct PySequence_InputIterator + { + typedef PySequence_InputIterator<T, Reference > self; + + typedef std::random_access_iterator_tag iterator_category; + typedef Reference reference; + typedef T value_type; + typedef T* pointer; + typedef int difference_type; + + PySequence_InputIterator() + { + } + + PySequence_InputIterator(PyObject* seq, int index) + : _seq(seq), _index(index) + { + } + + reference operator*() const + { + return reference(_seq, _index); + } + + PySequence_ArrowProxy<T> + operator->() const { + return PySequence_ArrowProxy<T>(operator*()); + } + + bool operator==(const self& ri) const + { + return (_index == ri._index) && (_seq == ri._seq); + } + + bool operator!=(const self& ri) const + { + return !(operator==(ri)); + } + + self& operator ++ () + { + ++_index; + return *this; + } + + self& operator -- () + { + --_index; + return *this; + } + + self& operator += (difference_type n) + { + _index += n; + return *this; + } + + self operator +(difference_type n) const + { + return self(_seq, _index + n); + } + + self& operator -= (difference_type n) + { + _index -= n; + return *this; + } + + self operator -(difference_type n) const + { + return self(_seq, _index - n); + } + + difference_type operator - (const self& ri) const + { + return _index - ri._index; + } + + bool operator < (const self& ri) const + { + return _index < ri._index; + } + + reference + operator[](difference_type n) const + { + return reference(_seq, _index + n); + } + + private: + PyObject* _seq; + difference_type _index; + }; + + template <class T> + struct PySequence_Cont + { + typedef PySequence_Ref<T> reference; + typedef const PySequence_Ref<T> const_reference; + typedef T value_type; + typedef T* pointer; + typedef int difference_type; + typedef int size_type; + typedef const pointer const_pointer; + typedef PySequence_InputIterator<T, reference> iterator; + typedef PySequence_InputIterator<T, const_reference> const_iterator; + + PySequence_Cont(PyObject* seq) : _seq(0) + { + if (!PySequence_Check(seq)) { + throw std::invalid_argument("a sequence is expected"); + } + _seq = seq; + Py_INCREF(_seq); + } + + ~PySequence_Cont() + { + if (_seq) Py_DECREF(_seq); + } + + size_type size() const + { + return static_cast<size_type>(PySequence_Size(_seq)); + } + + bool empty() const + { + return size() == 0; + } + + iterator begin() + { + return iterator(_seq, 0); + } + + const_iterator begin() const + { + return const_iterator(_seq, 0); + } + + iterator end() + { + return iterator(_seq, size()); + } + + const_iterator end() const + { + return const_iterator(_seq, size()); + } + + reference operator[](difference_type n) + { + return reference(_seq, n); + } + + const_reference operator[](difference_type n) const + { + return const_reference(_seq, n); + } + + bool check(bool set_err = true) const + { + int s = size(); + for (int i = 0; i < s; ++i) { + swig::PyObject_var item = PySequence_GetItem(_seq, i); + if (!swig::check<value_type>(item)) { + if (set_err) { + char msg[1024]; + sprintf(msg, "in sequence element %d", i); + SWIG_Error(SWIG_RuntimeError, msg); + } + return false; + } + } + return true; + } + + private: + PyObject* _seq; + }; + +} + + + namespace swig { + template <> struct traits<HepMC::GenParticle > { + typedef pointer_category category; + static const char* type_name() { return"HepMC::GenParticle"; } + }; + } + + +namespace swig { + template <class PySeq, class Seq> + inline void + assign(const PySeq& pyseq, Seq* seq) { +#ifdef SWIG_STD_NOASSIGN_STL + typedef typename PySeq::value_type value_type; + typename PySeq::const_iterator it = pyseq.begin(); + for (;it != pyseq.end(); ++it) { + seq->insert(seq->end(),(value_type)(*it)); + } +#else + seq->assign(pyseq.begin(), pyseq.end()); +#endif + } + + template <class Seq, class T = typename Seq::value_type > + struct traits_asptr_stdseq { + typedef Seq sequence; + typedef T value_type; + + static int asptr(PyObject *obj, sequence **seq) { + if (PySequence_Check(obj)) { + try { + PySequence_Cont<value_type> pyseq(obj); + if (seq) { + sequence *pseq = new sequence(); + assign(pyseq, pseq); + *seq = pseq; + return SWIG_NEWOBJ; + } else { + return pyseq.check() ? SWIG_OK : SWIG_ERROR; + } + } catch (std::exception& e) { + if (seq) { + if (!PyErr_Occurred()) { + PyErr_SetString(PyExc_TypeError, e.what()); + } + } + return SWIG_ERROR; + } + } else { + sequence *p; + if (SWIG_ConvertPtr(obj,(void**)&p, + swig::type_info<sequence>(),0) == SWIG_OK) { + if (seq) *seq = p; + return SWIG_OLDOBJ; + } + } + return SWIG_ERROR; + } + }; + + template <class Seq, class T = typename Seq::value_type > + struct traits_from_stdseq { + typedef Seq sequence; + typedef T value_type; + typedef typename Seq::size_type size_type; + typedef typename sequence::const_iterator const_iterator; + + static PyObject *from(const sequence& seq) { + + + + + + + size_type size = seq.size(); + if (size <= (size_type)INT_MAX) { + PyObject *obj = PyTuple_New((int)size); + int i = 0; + for (const_iterator it = seq.begin(); + it != seq.end(); ++it, ++i) { + PyTuple_SetItem(obj,i,swig::from<value_type>(*it)); + } + return obj; + } else { + PyErr_SetString(PyExc_OverflowError,"sequence size not valid in python"); + return NULL; + } + } + }; +} + + + namespace swig { + template <class T> + struct traits_asptr<std::vector<T> > { + static int asptr(PyObject *obj, std::vector<T> **vec) { + return traits_asptr_stdseq<std::vector<T> >::asptr(obj, vec); + } + }; + + template <class T> + struct traits_from<std::vector<T> > { + static PyObject *from(const std::vector<T>& vec) { + return traits_from_stdseq<std::vector<T> >::from(vec); + } + }; + } + + + namespace swig { + template <> struct traits<std::vector<HepMC::GenParticle*, std::allocator<HepMC::GenParticle * > > > { + typedef value_category category; + static const char* type_name() { + return "std::vector<" "HepMC::GenParticle" " *," "std::allocator<HepMC::GenParticle * >" " >"; + } + }; + } + +SWIGINTERN swig::PySwigIterator *std_vector_Sl_HepMC_GenParticle_Sm__Sg__iterator(std::vector<HepMC::GenParticle * > *self,PyObject **PYTHON_SELF){ + return swig::make_output_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); + } +SWIGINTERN bool std_vector_Sl_HepMC_GenParticle_Sm__Sg____nonzero__(std::vector<HepMC::GenParticle * > const *self){ + return !(self->empty()); + } +SWIGINTERN std::vector<HepMC::GenParticle * >::size_type std_vector_Sl_HepMC_GenParticle_Sm__Sg____len__(std::vector<HepMC::GenParticle * > const *self){ + return self->size(); + } + +SWIGINTERNINLINE PyObject* +SWIG_From_unsigned_SS_long (unsigned long value) +{ + return (value > LONG_MAX) ? + PyLong_FromUnsignedLong(value) : PyInt_FromLong(static_cast< long >(value)); +} + + +SWIGINTERNINLINE PyObject * +SWIG_From_size_t (size_t value) +{ + return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value)); +} + +SWIGINTERN std::vector<HepMC::GenParticle * >::value_type std_vector_Sl_HepMC_GenParticle_Sm__Sg__pop(std::vector<HepMC::GenParticle * > *self){ + if (self->size() == 0) + throw std::out_of_range("pop from empty container"); + std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >::value_type x = self->back(); + self->pop_back(); + return x; + } +SWIGINTERN std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > *std_vector_Sl_HepMC_GenParticle_Sm__Sg____getslice__(std::vector<HepMC::GenParticle * > *self,std::vector<HepMC::GenParticle * >::difference_type i,std::vector<HepMC::GenParticle * >::difference_type j){ + return swig::getslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_Sm__Sg____setslice__(std::vector<HepMC::GenParticle * > *self,std::vector<HepMC::GenParticle * >::difference_type i,std::vector<HepMC::GenParticle * >::difference_type j,std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > const &v){ + swig::setslice(self, i, j, v); + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_Sm__Sg____delslice__(std::vector<HepMC::GenParticle * > *self,std::vector<HepMC::GenParticle * >::difference_type i,std::vector<HepMC::GenParticle * >::difference_type j){ + swig::delslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_Sm__Sg____delitem__(std::vector<HepMC::GenParticle * > *self,std::vector<HepMC::GenParticle * >::difference_type i){ + self->erase(swig::getpos(self,i)); + } +SWIGINTERN std::vector<HepMC::GenParticle * >::value_type std_vector_Sl_HepMC_GenParticle_Sm__Sg____getitem__(std::vector<HepMC::GenParticle * > *self,std::vector<HepMC::GenParticle * >::difference_type i){ + return *(swig::cgetpos(self, i)); + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_Sm__Sg____setitem__(std::vector<HepMC::GenParticle * > *self,std::vector<HepMC::GenParticle * >::difference_type i,std::vector<HepMC::GenParticle * >::value_type x){ + *(swig::getpos(self,i)) = x; + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_Sm__Sg__append(std::vector<HepMC::GenParticle * > *self,std::vector<HepMC::GenParticle * >::value_type x){ + self->push_back(x); + } + + namespace swig { + template <> struct traits<HepMC::GenParticle const * > { + typedef pointer_category category; + static const char* type_name() { return"HepMC::GenParticle const *"; } + }; + } + + + namespace swig { + template <> struct traits<std::vector<HepMC::GenParticle const *, std::allocator<HepMC::GenParticle const * > > > { + typedef pointer_category category; + static const char* type_name() { + return "std::vector<" "HepMC::GenParticle const *" "," "std::allocator<HepMC::GenParticle const * >" " >"; + } + }; + } + +SWIGINTERN swig::PySwigIterator *std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg__iterator(std::vector<HepMC::GenParticle const * > *self,PyObject **PYTHON_SELF){ + return swig::make_output_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); + } +SWIGINTERN bool std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____nonzero__(std::vector<HepMC::GenParticle const * > const *self){ + return !(self->empty()); + } +SWIGINTERN std::vector<HepMC::GenParticle const * >::size_type std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____len__(std::vector<HepMC::GenParticle const * > const *self){ + return self->size(); + } +SWIGINTERN std::vector<HepMC::GenParticle const * >::value_type std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg__pop(std::vector<HepMC::GenParticle const * > *self){ + if (self->size() == 0) + throw std::out_of_range("pop from empty container"); + std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >::value_type x = self->back(); + self->pop_back(); + return x; + } +SWIGINTERN std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > *std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____getslice__(std::vector<HepMC::GenParticle const * > *self,std::vector<HepMC::GenParticle const * >::difference_type i,std::vector<HepMC::GenParticle const * >::difference_type j){ + return swig::getslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____setslice__(std::vector<HepMC::GenParticle const * > *self,std::vector<HepMC::GenParticle const * >::difference_type i,std::vector<HepMC::GenParticle const * >::difference_type j,std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > const &v){ + swig::setslice(self, i, j, v); + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____delslice__(std::vector<HepMC::GenParticle const * > *self,std::vector<HepMC::GenParticle const * >::difference_type i,std::vector<HepMC::GenParticle const * >::difference_type j){ + swig::delslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____delitem__(std::vector<HepMC::GenParticle const * > *self,std::vector<HepMC::GenParticle const * >::difference_type i){ + self->erase(swig::getpos(self,i)); + } +SWIGINTERN std::vector<HepMC::GenParticle const * >::value_type const &std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____getitem__(std::vector<HepMC::GenParticle const * > const *self,std::vector<HepMC::GenParticle const * >::difference_type i){ + return *(swig::cgetpos(self, i)); + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____setitem__(std::vector<HepMC::GenParticle const * > *self,std::vector<HepMC::GenParticle const * >::difference_type i,std::vector<HepMC::GenParticle const * >::value_type const &x){ + *(swig::getpos(self,i)) = x; + } +SWIGINTERN void std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg__append(std::vector<HepMC::GenParticle const * > *self,std::vector<HepMC::GenParticle const * >::value_type const &x){ + self->push_back(x); + } + + namespace swig { + template <> struct traits<HepMC::GenVertex > { + typedef pointer_category category; + static const char* type_name() { return"HepMC::GenVertex"; } + }; + } + + + namespace swig { + template <> struct traits<std::vector<HepMC::GenVertex*, std::allocator<HepMC::GenVertex * > > > { + typedef value_category category; + static const char* type_name() { + return "std::vector<" "HepMC::GenVertex" " *," "std::allocator<HepMC::GenVertex * >" " >"; + } + }; + } + +SWIGINTERN swig::PySwigIterator *std_vector_Sl_HepMC_GenVertex_Sm__Sg__iterator(std::vector<HepMC::GenVertex * > *self,PyObject **PYTHON_SELF){ + return swig::make_output_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); + } +SWIGINTERN bool std_vector_Sl_HepMC_GenVertex_Sm__Sg____nonzero__(std::vector<HepMC::GenVertex * > const *self){ + return !(self->empty()); + } +SWIGINTERN std::vector<HepMC::GenVertex * >::size_type std_vector_Sl_HepMC_GenVertex_Sm__Sg____len__(std::vector<HepMC::GenVertex * > const *self){ + return self->size(); + } +SWIGINTERN std::vector<HepMC::GenVertex * >::value_type std_vector_Sl_HepMC_GenVertex_Sm__Sg__pop(std::vector<HepMC::GenVertex * > *self){ + if (self->size() == 0) + throw std::out_of_range("pop from empty container"); + std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >::value_type x = self->back(); + self->pop_back(); + return x; + } +SWIGINTERN std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > *std_vector_Sl_HepMC_GenVertex_Sm__Sg____getslice__(std::vector<HepMC::GenVertex * > *self,std::vector<HepMC::GenVertex * >::difference_type i,std::vector<HepMC::GenVertex * >::difference_type j){ + return swig::getslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_Sm__Sg____setslice__(std::vector<HepMC::GenVertex * > *self,std::vector<HepMC::GenVertex * >::difference_type i,std::vector<HepMC::GenVertex * >::difference_type j,std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > const &v){ + swig::setslice(self, i, j, v); + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_Sm__Sg____delslice__(std::vector<HepMC::GenVertex * > *self,std::vector<HepMC::GenVertex * >::difference_type i,std::vector<HepMC::GenVertex * >::difference_type j){ + swig::delslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_Sm__Sg____delitem__(std::vector<HepMC::GenVertex * > *self,std::vector<HepMC::GenVertex * >::difference_type i){ + self->erase(swig::getpos(self,i)); + } +SWIGINTERN std::vector<HepMC::GenVertex * >::value_type std_vector_Sl_HepMC_GenVertex_Sm__Sg____getitem__(std::vector<HepMC::GenVertex * > *self,std::vector<HepMC::GenVertex * >::difference_type i){ + return *(swig::cgetpos(self, i)); + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_Sm__Sg____setitem__(std::vector<HepMC::GenVertex * > *self,std::vector<HepMC::GenVertex * >::difference_type i,std::vector<HepMC::GenVertex * >::value_type x){ + *(swig::getpos(self,i)) = x; + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_Sm__Sg__append(std::vector<HepMC::GenVertex * > *self,std::vector<HepMC::GenVertex * >::value_type x){ + self->push_back(x); + } + + namespace swig { + template <> struct traits<HepMC::GenVertex const * > { + typedef pointer_category category; + static const char* type_name() { return"HepMC::GenVertex const *"; } + }; + } + + + namespace swig { + template <> struct traits<std::vector<HepMC::GenVertex const *, std::allocator<HepMC::GenVertex const * > > > { + typedef pointer_category category; + static const char* type_name() { + return "std::vector<" "HepMC::GenVertex const *" "," "std::allocator<HepMC::GenVertex const * >" " >"; + } + }; + } + +SWIGINTERN swig::PySwigIterator *std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg__iterator(std::vector<HepMC::GenVertex const * > *self,PyObject **PYTHON_SELF){ + return swig::make_output_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); + } +SWIGINTERN bool std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____nonzero__(std::vector<HepMC::GenVertex const * > const *self){ + return !(self->empty()); + } +SWIGINTERN std::vector<HepMC::GenVertex const * >::size_type std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____len__(std::vector<HepMC::GenVertex const * > const *self){ + return self->size(); + } +SWIGINTERN std::vector<HepMC::GenVertex const * >::value_type std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg__pop(std::vector<HepMC::GenVertex const * > *self){ + if (self->size() == 0) + throw std::out_of_range("pop from empty container"); + std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >::value_type x = self->back(); + self->pop_back(); + return x; + } +SWIGINTERN std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > *std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____getslice__(std::vector<HepMC::GenVertex const * > *self,std::vector<HepMC::GenVertex const * >::difference_type i,std::vector<HepMC::GenVertex const * >::difference_type j){ + return swig::getslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____setslice__(std::vector<HepMC::GenVertex const * > *self,std::vector<HepMC::GenVertex const * >::difference_type i,std::vector<HepMC::GenVertex const * >::difference_type j,std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > const &v){ + swig::setslice(self, i, j, v); + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____delslice__(std::vector<HepMC::GenVertex const * > *self,std::vector<HepMC::GenVertex const * >::difference_type i,std::vector<HepMC::GenVertex const * >::difference_type j){ + swig::delslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____delitem__(std::vector<HepMC::GenVertex const * > *self,std::vector<HepMC::GenVertex const * >::difference_type i){ + self->erase(swig::getpos(self,i)); + } +SWIGINTERN std::vector<HepMC::GenVertex const * >::value_type const &std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____getitem__(std::vector<HepMC::GenVertex const * > const *self,std::vector<HepMC::GenVertex const * >::difference_type i){ + return *(swig::cgetpos(self, i)); + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____setitem__(std::vector<HepMC::GenVertex const * > *self,std::vector<HepMC::GenVertex const * >::difference_type i,std::vector<HepMC::GenVertex const * >::value_type const &x){ + *(swig::getpos(self,i)) = x; + } +SWIGINTERN void std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg__append(std::vector<HepMC::GenVertex const * > *self,std::vector<HepMC::GenVertex const * >::value_type const &x){ + self->push_back(x); + } + + namespace swig { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + template <class T, class U > + struct traits_asptr<std::pair<T,U> > { + typedef std::pair<T,U> value_type; + + static int get_pair(PyObject* first, PyObject* second, + std::pair<T,U> **val) + { + if (val) { + value_type *vp = (new std::pair<T,U>); + T *pfirst = &(vp->first); + int res1 = swig::asval((PyObject*)first, pfirst); + if (!SWIG_IsOK(res1)) return res1; + U *psecond = &(vp->second); + int res2 = swig::asval((PyObject*)second, psecond); + if (!SWIG_IsOK(res2)) return res2; + *val = vp; + return SWIG_AddNewMask(res1 > res2 ? res1 : res2); + } else { + T *pfirst = 0; + int res1 = swig::asval((PyObject*)first, pfirst); + if (!SWIG_IsOK(res1)) return res1; + U *psecond = 0; + int res2 = swig::asval((PyObject*)second, psecond); + if (!SWIG_IsOK(res2)) return res2; + return res1 > res2 ? res1 : res2; + } + } + + static int asptr(PyObject *obj, std::pair<T,U> **val) { + int res = SWIG_ERROR; + if (PyTuple_Check(obj)) { + if (PyTuple_GET_SIZE(obj) == 2) { + res = get_pair(PyTuple_GET_ITEM(obj,0),PyTuple_GET_ITEM(obj,1), val); + } + } else if (PySequence_Check(obj)) { + if (PySequence_Size(obj) == 2) { + swig::PyObject_var first = PySequence_GetItem(obj,0); + swig::PyObject_var second = PySequence_GetItem(obj,1); + res = get_pair(first, second, val); + } + } else { + value_type *p; + res = SWIG_ConvertPtr(obj,(void**)&p,swig::type_info<value_type>(),0); + if (SWIG_IsOK(res) && val) *val = p; + } + return res; + } + }; + + + template <class T, class U > + struct traits_from<std::pair<T,U> > { + static PyObject *from(const std::pair<T,U>& val) { + PyObject* obj = PyTuple_New(2); + PyTuple_SetItem(obj,0,swig::from(val.first)); + PyTuple_SetItem(obj,1,swig::from(val.second)); + return obj; + } + }; + } + + + namespace swig { + template <> struct traits<std::pair<HepMC::GenParticle*,HepMC::GenParticle* > > { + typedef pointer_category category; + static const char* type_name() { + return "std::pair<" "HepMC::GenParticle" " *," "HepMC::GenParticle" " * >"; + } + }; + } + + + namespace swig { + template <> struct traits<std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > > { + typedef pointer_category category; + static const char* type_name() { + return "std::pair<" "HepMC::GenParticle const *" "," "HepMC::GenParticle const *" " >"; + } + }; + } + + +SWIGINTERN int +SWIG_AsVal_std_string (PyObject * obj, std::string *val) +{ + std::string* v = (std::string *) 0; + int res = SWIG_AsPtr_std_string (obj, &v); + if (!SWIG_IsOK(res)) return res; + if (v) { + if (val) *val = *v; + if (SWIG_IsNewObj(res)) { + delete v; + res = SWIG_DelNewMask(res); + } + return res; + } + return SWIG_ERROR; +} + + +namespace swig { + template <> struct traits<std::string > { + typedef value_category category; + static const char* type_name() { return"std::string"; } + }; + template <> struct traits_asval<std::string > { + typedef std::string value_type; + static int asval(PyObject *obj, value_type *val) { + return SWIG_AsVal_std_string (obj, val); + } + }; + template <> struct traits_from<std::string > { + typedef std::string value_type; + static PyObject *from(const value_type& val) { + return SWIG_From_std_string (val); + } + }; +} + + + namespace swig { + template <> struct traits<std::vector<std::string, std::allocator<std::string > > > { + typedef pointer_category category; + static const char* type_name() { + return "std::vector<" "std::string" "," "std::allocator<std::string >" " >"; + } + }; + } + +SWIGINTERN swig::PySwigIterator *std_vector_Sl_std_string_Sg__iterator(std::vector<std::string > *self,PyObject **PYTHON_SELF){ + return swig::make_output_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); + } +SWIGINTERN bool std_vector_Sl_std_string_Sg____nonzero__(std::vector<std::string > const *self){ + return !(self->empty()); + } +SWIGINTERN std::vector<std::string >::size_type std_vector_Sl_std_string_Sg____len__(std::vector<std::string > const *self){ + return self->size(); + } +SWIGINTERN std::vector<std::string >::value_type std_vector_Sl_std_string_Sg__pop(std::vector<std::string > *self){ + if (self->size() == 0) + throw std::out_of_range("pop from empty container"); + std::vector<std::string,std::allocator<std::string > >::value_type x = self->back(); + self->pop_back(); + return x; + } +SWIGINTERN std::vector<std::string,std::allocator<std::string > > *std_vector_Sl_std_string_Sg____getslice__(std::vector<std::string > *self,std::vector<std::string >::difference_type i,std::vector<std::string >::difference_type j){ + return swig::getslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_std_string_Sg____setslice__(std::vector<std::string > *self,std::vector<std::string >::difference_type i,std::vector<std::string >::difference_type j,std::vector<std::string,std::allocator<std::string > > const &v){ + swig::setslice(self, i, j, v); + } +SWIGINTERN void std_vector_Sl_std_string_Sg____delslice__(std::vector<std::string > *self,std::vector<std::string >::difference_type i,std::vector<std::string >::difference_type j){ + swig::delslice(self, i, j); + } +SWIGINTERN void std_vector_Sl_std_string_Sg____delitem__(std::vector<std::string > *self,std::vector<std::string >::difference_type i){ + self->erase(swig::getpos(self,i)); + } +SWIGINTERN std::vector<std::string >::value_type const &std_vector_Sl_std_string_Sg____getitem__(std::vector<std::string > const *self,std::vector<std::string >::difference_type i){ + return *(swig::cgetpos(self, i)); + } +SWIGINTERN void std_vector_Sl_std_string_Sg____setitem__(std::vector<std::string > *self,std::vector<std::string >::difference_type i,std::vector<std::string >::value_type const &x){ + *(swig::getpos(self,i)) = x; + } +SWIGINTERN void std_vector_Sl_std_string_Sg__append(std::vector<std::string > *self,std::vector<std::string >::value_type const &x){ + self->push_back(x); + } + +namespace swig { + template <> struct traits<long > { + typedef value_category category; + static const char* type_name() { return"long"; } + }; + template <> struct traits_asval<long > { + typedef long value_type; + static int asval(PyObject *obj, value_type *val) { + return SWIG_AsVal_long (obj, val); + } + }; + template <> struct traits_from<long > { + typedef long value_type; + static PyObject *from(const value_type& val) { + return SWIG_From_long (val); + } + }; +} + + + namespace swig { + template <> struct traits<std::pair<long,long > > { + typedef pointer_category category; + static const char* type_name() { + return "std::pair<" "long" "," "long" " >"; + } + }; + } + + +namespace swig { + template <> struct traits<int > { + typedef value_category category; + static const char* type_name() { return"int"; } + }; + template <> struct traits_asval<int > { + typedef int value_type; + static int asval(PyObject *obj, value_type *val) { + return SWIG_AsVal_int (obj, val); + } + }; + template <> struct traits_from<int > { + typedef int value_type; + static PyObject *from(const value_type& val) { + return SWIG_From_int (val); + } + }; +} + + + namespace swig { + template <> struct traits<std::pair< std::string, int > > { + typedef pointer_category category; + static const char* type_name() { + return "std::pair<" "std::string" "," "int" " >"; + } + }; + } + + + namespace swig { + template <class PySeq, class K, class T > + inline void + assign(const PySeq& pyseq, std::map<K,T > *map) { + typedef typename std::map<K,T>::value_type value_type; + typename PySeq::const_iterator it = pyseq.begin(); + for (;it != pyseq.end(); ++it) { + map->insert(value_type(it->first, it->second)); + } + } + + template <class K, class T> + struct traits_asptr<std::map<K,T> > { + typedef std::map<K,T> map_type; + static int asptr(PyObject *obj, map_type **val) { + int res = SWIG_ERROR; + if (PyDict_Check(obj)) { + PyObject_var items = PyObject_CallMethod(obj,"items",NULL); + res = traits_asptr_stdseq<std::map<K,T>, std::pair<K, T> >::asptr(items, val); + } else { + map_type *p; + res = SWIG_ConvertPtr(obj,(void**)&p,swig::type_info<map_type>(),0); + if (SWIG_IsOK(res) && val) *val = p; + } + return res; + } + }; + + template <class K, class T > + struct traits_from<std::map<K,T> > { + typedef std::map<K,T> map_type; + typedef typename map_type::const_iterator const_iterator; + typedef typename map_type::size_type size_type; + + static PyObject *from(const map_type& map) { + swig_type_info *desc = swig::type_info<map_type>(); + if (desc && desc->clientdata) { + return SWIG_NewPointerObj(new map_type(map), desc, SWIG_POINTER_OWN); + } else { + size_type size = map.size(); + int pysize = (size <= (size_type) INT_MAX) ? (int) size : -1; + if (pysize < 0) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetString(PyExc_OverflowError, + "map size not valid in python"); + SWIG_PYTHON_THREAD_END_BLOCK; + return NULL; + } + PyObject *obj = PyDict_New(); + for (const_iterator i= map.begin(); i!= map.end(); ++i) { + swig::PyObject_var key = swig::from(i->first); + swig::PyObject_var val = swig::from(i->second); + PyDict_SetItem(obj, key, val); + } + return obj; + } + } + }; + + template <class ValueType> + struct from_key_oper + { + typedef const ValueType& argument_type; + typedef PyObject *result_type; + result_type operator()(argument_type v) const + { + return swig::from(v.first); + } + }; + + template <class ValueType> + struct from_value_oper + { + typedef const ValueType& argument_type; + typedef PyObject *result_type; + result_type operator()(argument_type v) const + { + return swig::from(v.second); + } + }; + + template<class OutIterator, class FromOper, class ValueType = typename OutIterator::value_type> + struct PyMapIterator_T : PySwigIteratorClosed_T<OutIterator, ValueType, FromOper> + { + PyMapIterator_T(OutIterator curr, OutIterator first, OutIterator last, PyObject *seq) + : PySwigIteratorClosed_T<OutIterator,ValueType,FromOper>(curr, first, last, seq) + { + } + }; + + + template<class OutIterator, + class FromOper = from_key_oper<typename OutIterator::value_type> > + struct PyMapKeyIterator_T : PyMapIterator_T<OutIterator, FromOper> + { + PyMapKeyIterator_T(OutIterator curr, OutIterator first, OutIterator last, PyObject *seq) + : PyMapIterator_T<OutIterator, FromOper>(curr, first, last, seq) + { + } + }; + + template<typename OutIter> + inline PySwigIterator* + make_output_key_iterator(const OutIter& current, const OutIter& begin, const OutIter& end, PyObject *seq = 0) + { + return new PyMapKeyIterator_T<OutIter>(current, begin, end, seq); + } + + template<class OutIterator, + class FromOper = from_value_oper<typename OutIterator::value_type> > + struct PyMapValueIterator_T : PyMapIterator_T<OutIterator, FromOper> + { + PyMapValueIterator_T(OutIterator curr, OutIterator first, OutIterator last, PyObject *seq) + : PyMapIterator_T<OutIterator, FromOper>(curr, first, last, seq) + { + } + }; + + + template<typename OutIter> + inline PySwigIterator* + make_output_value_iterator(const OutIter& current, const OutIter& begin, const OutIter& end, PyObject *seq = 0) + { + return new PyMapValueIterator_T<OutIter>(current, begin, end, seq); + } + } + + + namespace swig { + template <> struct traits<std::map<std::string, int, std::less<std::string >, std::allocator<std::pair<std::string const,int > > > > { + typedef pointer_category category; + static const char* type_name() { + return "std::map<" "std::string" "," "int" "," "std::less<std::string >" "," "std::allocator<std::pair<std::string const,int > >" " >"; + } + }; + } + +SWIGINTERN swig::PySwigIterator *std_map_Sl_std_string_Sc_int_Sg__iterator(std::map<std::string,int > *self,PyObject **PYTHON_SELF){ + return swig::make_output_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); + } +SWIGINTERN bool std_map_Sl_std_string_Sc_int_Sg____nonzero__(std::map<std::string,int > const *self){ + return !(self->empty()); + } +SWIGINTERN std::map<std::string,int >::size_type std_map_Sl_std_string_Sc_int_Sg____len__(std::map<std::string,int > const *self){ + return self->size(); + } +SWIGINTERN std::map<std::string,int >::mapped_type std_map_Sl_std_string_Sc_int_Sg____getitem__(std::map<std::string,int > const *self,std::map<std::string,int >::key_type const &key){ + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::const_iterator i = self->find(key); + if (i != self->end()) + return i->second; + else + throw std::out_of_range("key not found"); + } +SWIGINTERN void std_map_Sl_std_string_Sc_int_Sg____delitem__(std::map<std::string,int > *self,std::map<std::string,int >::key_type const &key){ + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::iterator i = self->find(key); + if (i != self->end()) + self->erase(i); + else + throw std::out_of_range("key not found"); + } +SWIGINTERN bool std_map_Sl_std_string_Sc_int_Sg__has_key(std::map<std::string,int > const *self,std::map<std::string,int >::key_type const &key){ + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::const_iterator i = self->find(key); + return i != self->end(); + } +SWIGINTERN PyObject *std_map_Sl_std_string_Sc_int_Sg__keys(std::map<std::string,int > *self){ + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::size_type size = self->size(); + int pysize = (size <= (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::size_type) INT_MAX) ? (int) size : -1; + if (pysize < 0) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetString(PyExc_OverflowError, + "map size not valid in python"); + SWIG_PYTHON_THREAD_END_BLOCK; + return NULL; + } + PyObject* keyList = PyList_New(pysize); + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::const_iterator i = self->begin(); + for (int j = 0; j < pysize; ++i, ++j) { + PyList_SET_ITEM(keyList, j, swig::from(i->first)); + } + return keyList; + } +SWIGINTERN PyObject *std_map_Sl_std_string_Sc_int_Sg__values(std::map<std::string,int > *self){ + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::size_type size = self->size(); + int pysize = (size <= (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::size_type) INT_MAX) ? (int) size : -1; + if (pysize < 0) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetString(PyExc_OverflowError, + "map size not valid in python"); + SWIG_PYTHON_THREAD_END_BLOCK; + return NULL; + } + PyObject* valList = PyList_New(pysize); + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::const_iterator i = self->begin(); + for (int j = 0; j < pysize; ++i, ++j) { + PyList_SET_ITEM(valList, j, swig::from(i->second)); + } + return valList; + } +SWIGINTERN PyObject *std_map_Sl_std_string_Sc_int_Sg__items(std::map<std::string,int > *self){ + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::size_type size = self->size(); + int pysize = (size <= (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::size_type) INT_MAX) ? (int) size : -1; + if (pysize < 0) { + SWIG_PYTHON_THREAD_BEGIN_BLOCK; + PyErr_SetString(PyExc_OverflowError, + "map size not valid in python"); + SWIG_PYTHON_THREAD_END_BLOCK; + return NULL; + } + PyObject* itemList = PyList_New(pysize); + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >::const_iterator i = self->begin(); + for (int j = 0; j < pysize; ++i, ++j) { + PyList_SET_ITEM(itemList, j, swig::from(*i)); + } + return itemList; + } +SWIGINTERN bool std_map_Sl_std_string_Sc_int_Sg____contains__(std::map<std::string,int > *self,std::map<std::string,int >::key_type const &key){ + return self->find(key) != self->end(); + } +SWIGINTERN swig::PySwigIterator *std_map_Sl_std_string_Sc_int_Sg__key_iterator(std::map<std::string,int > *self,PyObject **PYTHON_SELF){ + return swig::make_output_key_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); + } +SWIGINTERN swig::PySwigIterator *std_map_Sl_std_string_Sc_int_Sg__value_iterator(std::map<std::string,int > *self,PyObject **PYTHON_SELF){ + return swig::make_output_value_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); + } +SWIGINTERN void std_map_Sl_std_string_Sc_int_Sg____setitem__(std::map<std::string,int > *self,std::map<std::string,int >::key_type const &key,std::map<std::string,int >::mapped_type const &x){ + (*self)[key] = x; + } + +SWIGINTERN int +SWIG_AsVal_bool (PyObject *obj, bool *val) +{ + int r = PyObject_IsTrue(obj); + if (r == -1) + return SWIG_ERROR; + if (val) *val = r ? true : false; + return SWIG_OK; +} + +SWIGINTERN std::vector<std::string,std::allocator<std::string > > Rivet_AnalysisLoader_allAnalysisNames(){ + std::set<std::string> names = Rivet::AnalysisLoader::getAllAnalysisNames(); + std::vector<std::string> vnames(names.begin(), names.end()); + return vnames; + } +#ifdef __cplusplus +extern "C" { +#endif +SWIGINTERN PyObject *_wrap_delete_PySwigIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_PySwigIterator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_PySwigIterator" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_value(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + PyObject *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:PySwigIterator_value",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_value" "', argument " "1"" of type '" "swig::PySwigIterator const *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + try { + result = (PyObject *)((swig::PySwigIterator const *)arg1)->value(); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = result; + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_incr__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + size_t arg2 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator_incr",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_incr" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "PySwigIterator_incr" "', argument " "2"" of type '" "size_t""'"); + } + arg2 = static_cast< size_t >(val2); + try { + result = (swig::PySwigIterator *)(arg1)->incr(arg2); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_incr__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:PySwigIterator_incr",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_incr" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + try { + result = (swig::PySwigIterator *)(arg1)->incr(); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_incr(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__PySwigIterator, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_PySwigIterator_incr__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__PySwigIterator, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_PySwigIterator_incr__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'PySwigIterator_incr'.\n Possible C/C++ prototypes are:\n"" incr(swig::PySwigIterator *,size_t)\n"" incr(swig::PySwigIterator *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_decr__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + size_t arg2 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator_decr",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_decr" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "PySwigIterator_decr" "', argument " "2"" of type '" "size_t""'"); + } + arg2 = static_cast< size_t >(val2); + try { + result = (swig::PySwigIterator *)(arg1)->decr(arg2); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_decr__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:PySwigIterator_decr",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_decr" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + try { + result = (swig::PySwigIterator *)(arg1)->decr(); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_decr(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__PySwigIterator, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_PySwigIterator_decr__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__PySwigIterator, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_PySwigIterator_decr__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'PySwigIterator_decr'.\n Possible C/C++ prototypes are:\n"" decr(swig::PySwigIterator *,size_t)\n"" decr(swig::PySwigIterator *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_distance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + swig::PySwigIterator *arg2 = 0 ; + ptrdiff_t result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator_distance",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_distance" "', argument " "1"" of type '" "swig::PySwigIterator const *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__PySwigIterator, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "PySwigIterator_distance" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "PySwigIterator_distance" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + arg2 = reinterpret_cast< swig::PySwigIterator * >(argp2); + try { + result = ((swig::PySwigIterator const *)arg1)->distance((swig::PySwigIterator const &)*arg2); + } + catch(std::invalid_argument &_e) { + SWIG_Python_Raise(SWIG_NewPointerObj((new std::invalid_argument(static_cast< const std::invalid_argument& >(_e))),SWIGTYPE_p_std__invalid_argument,SWIG_POINTER_OWN), "std::invalid_argument", SWIGTYPE_p_std__invalid_argument); SWIG_fail; + } + + resultobj = SWIG_From_ptrdiff_t(static_cast< ptrdiff_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_equal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + swig::PySwigIterator *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator_equal",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_equal" "', argument " "1"" of type '" "swig::PySwigIterator const *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__PySwigIterator, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "PySwigIterator_equal" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "PySwigIterator_equal" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + arg2 = reinterpret_cast< swig::PySwigIterator * >(argp2); + try { + result = (bool)((swig::PySwigIterator const *)arg1)->equal((swig::PySwigIterator const &)*arg2); + } + catch(std::invalid_argument &_e) { + SWIG_Python_Raise(SWIG_NewPointerObj((new std::invalid_argument(static_cast< const std::invalid_argument& >(_e))),SWIGTYPE_p_std__invalid_argument,SWIG_POINTER_OWN), "std::invalid_argument", SWIGTYPE_p_std__invalid_argument); SWIG_fail; + } + + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_copy(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:PySwigIterator_copy",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_copy" "', argument " "1"" of type '" "swig::PySwigIterator const *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + result = (swig::PySwigIterator *)((swig::PySwigIterator const *)arg1)->copy(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + PyObject *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:PySwigIterator_next",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_next" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + try { + result = (PyObject *)(arg1)->next(); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = result; + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_previous(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + PyObject *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:PySwigIterator_previous",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_previous" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + try { + result = (PyObject *)(arg1)->previous(); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = result; + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator_advance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + ptrdiff_t arg2 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator_advance",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator_advance" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "PySwigIterator_advance" "', argument " "2"" of type '" "ptrdiff_t""'"); + } + arg2 = static_cast< ptrdiff_t >(val2); + try { + result = (swig::PySwigIterator *)(arg1)->advance(arg2); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + swig::PySwigIterator *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator___eq__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator___eq__" "', argument " "1"" of type '" "swig::PySwigIterator const *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__PySwigIterator, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "PySwigIterator___eq__" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "PySwigIterator___eq__" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + arg2 = reinterpret_cast< swig::PySwigIterator * >(argp2); + result = (bool)((swig::PySwigIterator const *)arg1)->operator ==((swig::PySwigIterator const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + swig::PySwigIterator *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator___ne__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator___ne__" "', argument " "1"" of type '" "swig::PySwigIterator const *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__PySwigIterator, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "PySwigIterator___ne__" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "PySwigIterator___ne__" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + arg2 = reinterpret_cast< swig::PySwigIterator * >(argp2); + result = (bool)((swig::PySwigIterator const *)arg1)->operator !=((swig::PySwigIterator const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator___iadd__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + ptrdiff_t arg2 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator___iadd__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator___iadd__" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "PySwigIterator___iadd__" "', argument " "2"" of type '" "ptrdiff_t""'"); + } + arg2 = static_cast< ptrdiff_t >(val2); + try { + { + swig::PySwigIterator &_result_ref = (arg1)->operator +=(arg2); + result = (swig::PySwigIterator *) &_result_ref; + } + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator___isub__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + ptrdiff_t arg2 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator___isub__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator___isub__" "', argument " "1"" of type '" "swig::PySwigIterator *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "PySwigIterator___isub__" "', argument " "2"" of type '" "ptrdiff_t""'"); + } + arg2 = static_cast< ptrdiff_t >(val2); + try { + { + swig::PySwigIterator &_result_ref = (arg1)->operator -=(arg2); + result = (swig::PySwigIterator *) &_result_ref; + } + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator___add__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + ptrdiff_t arg2 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator___add__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator___add__" "', argument " "1"" of type '" "swig::PySwigIterator const *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "PySwigIterator___add__" "', argument " "2"" of type '" "ptrdiff_t""'"); + } + arg2 = static_cast< ptrdiff_t >(val2); + try { + result = (swig::PySwigIterator *)((swig::PySwigIterator const *)arg1)->operator +(arg2); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator___sub____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + ptrdiff_t arg2 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator___sub__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator___sub__" "', argument " "1"" of type '" "swig::PySwigIterator const *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "PySwigIterator___sub__" "', argument " "2"" of type '" "ptrdiff_t""'"); + } + arg2 = static_cast< ptrdiff_t >(val2); + try { + result = (swig::PySwigIterator *)((swig::PySwigIterator const *)arg1)->operator -(arg2); + } + catch(swig::stop_iteration &_e) { + { + (void)_e; + SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); + SWIG_fail; + } + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator___sub____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + swig::PySwigIterator *arg1 = (swig::PySwigIterator *) 0 ; + swig::PySwigIterator *arg2 = 0 ; + ptrdiff_t result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:PySwigIterator___sub__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__PySwigIterator, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "PySwigIterator___sub__" "', argument " "1"" of type '" "swig::PySwigIterator const *""'"); + } + arg1 = reinterpret_cast< swig::PySwigIterator * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__PySwigIterator, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "PySwigIterator___sub__" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "PySwigIterator___sub__" "', argument " "2"" of type '" "swig::PySwigIterator const &""'"); + } + arg2 = reinterpret_cast< swig::PySwigIterator * >(argp2); + result = ((swig::PySwigIterator const *)arg1)->operator -((swig::PySwigIterator const &)*arg2); + resultobj = SWIG_From_ptrdiff_t(static_cast< ptrdiff_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_PySwigIterator___sub__(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__PySwigIterator, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_swig__PySwigIterator, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_PySwigIterator___sub____SWIG_1(self, args); + } + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__PySwigIterator, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_ptrdiff_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_PySwigIterator___sub____SWIG_0(self, args); + } + } + } + +fail: + Py_INCREF(Py_NotImplemented); + return Py_NotImplemented; +} + + +SWIGINTERN PyObject *PySwigIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_swig__PySwigIterator, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_FourVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + double arg1 ; + double arg2 ; + double arg3 ; + double arg4 ; + HepMC::FourVector *result = 0 ; + double val1 ; + int ecode1 = 0 ; + double val2 ; + int ecode2 = 0 ; + double val3 ; + int ecode3 = 0 ; + double val4 ; + int ecode4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:new_FourVector",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + ecode1 = SWIG_AsVal_double(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_FourVector" "', argument " "1"" of type '" "double""'"); + } + arg1 = static_cast< double >(val1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_FourVector" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + ecode3 = SWIG_AsVal_double(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_FourVector" "', argument " "3"" of type '" "double""'"); + } + arg3 = static_cast< double >(val3); + ecode4 = SWIG_AsVal_double(obj3, &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_FourVector" "', argument " "4"" of type '" "double""'"); + } + arg4 = static_cast< double >(val4); + result = (HepMC::FourVector *)new HepMC::FourVector(arg1,arg2,arg3,arg4); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_FourVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + double arg1 ; + double arg2 ; + double arg3 ; + HepMC::FourVector *result = 0 ; + double val1 ; + int ecode1 = 0 ; + double val2 ; + int ecode2 = 0 ; + double val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:new_FourVector",&obj0,&obj1,&obj2)) SWIG_fail; + ecode1 = SWIG_AsVal_double(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_FourVector" "', argument " "1"" of type '" "double""'"); + } + arg1 = static_cast< double >(val1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_FourVector" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + ecode3 = SWIG_AsVal_double(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_FourVector" "', argument " "3"" of type '" "double""'"); + } + arg3 = static_cast< double >(val3); + result = (HepMC::FourVector *)new HepMC::FourVector(arg1,arg2,arg3); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_FourVector__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + double arg1 ; + HepMC::FourVector *result = 0 ; + double val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_FourVector",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_double(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_FourVector" "', argument " "1"" of type '" "double""'"); + } + arg1 = static_cast< double >(val1); + result = (HepMC::FourVector *)new HepMC::FourVector(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_FourVector__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_FourVector")) SWIG_fail; + result = (HepMC::FourVector *)new HepMC::FourVector(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_FourVector__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = 0 ; + HepMC::FourVector *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_FourVector",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FourVector" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_FourVector" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (HepMC::FourVector *)new HepMC::FourVector((HepMC::FourVector const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_FourVector(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[5]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 4); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_FourVector__SWIG_3(self, args); + } + if (argc == 1) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__FourVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_FourVector__SWIG_6(self, args); + } + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_double(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_FourVector__SWIG_2(self, args); + } + } + if (argc == 3) { + int _v; + { + int res = SWIG_AsVal_double(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_double(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_double(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_FourVector__SWIG_1(self, args); + } + } + } + } + if (argc == 4) { + int _v; + { + int res = SWIG_AsVal_double(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_double(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_double(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_double(argv[3], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_FourVector__SWIG_0(self, args); + } + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_FourVector'.\n Possible C/C++ prototypes are:\n"" HepMC::FourVector(double,double,double,double)\n"" HepMC::FourVector(double,double,double)\n"" HepMC::FourVector(double)\n"" HepMC::FourVector()\n"" HepMC::FourVector(HepMC::FourVector const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + HepMC::FourVector *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_swap" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__FourVector, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FourVector_swap" "', argument " "2"" of type '" "HepMC::FourVector &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "FourVector_swap" "', argument " "2"" of type '" "HepMC::FourVector &""'"); + } + arg2 = reinterpret_cast< HepMC::FourVector * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_px(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_px",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_px" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->px(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_py(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_py",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_py" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->py(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_pz(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_pz",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_pz" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->pz(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_e(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_e",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_e" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->e(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_x(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_x",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_x" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->x(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_y(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_y",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_y" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->y(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_z(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_z",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_z" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->z(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_t(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_t",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_t" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->t(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_m2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_m2",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_m2" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->m2(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_m(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_m",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_m" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->m(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_perp2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_perp2",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_perp2" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->perp2(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_perp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_perp",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_perp" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->perp(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_mag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_mag",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_mag" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->mag(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_theta(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_theta",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_theta" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->theta(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_phi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_phi",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_phi" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->phi(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_rho(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_rho",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_rho" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->rho(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + HepMC::FourVector *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector___eq__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector___eq__" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FourVector___eq__" "', argument " "2"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "FourVector___eq__" "', argument " "2"" of type '" "HepMC::FourVector const &""'"); + } + arg2 = reinterpret_cast< HepMC::FourVector * >(argp2); + result = (bool)((HepMC::FourVector const *)arg1)->operator ==((HepMC::FourVector const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + HepMC::FourVector *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector___ne__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector___ne__" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FourVector___ne__" "', argument " "2"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "FourVector___ne__" "', argument " "2"" of type '" "HepMC::FourVector const &""'"); + } + arg2 = reinterpret_cast< HepMC::FourVector * >(argp2); + result = (bool)((HepMC::FourVector const *)arg1)->operator !=((HepMC::FourVector const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_pseudoRapidity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_pseudoRapidity",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_pseudoRapidity" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->pseudoRapidity(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_eta(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector_eta",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_eta" "', argument " "1"" of type '" "HepMC::FourVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (double)((HepMC::FourVector const *)arg1)->eta(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double arg2 ; + double arg3 ; + double arg4 ; + double arg5 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + double val3 ; + int ecode3 = 0 ; + double val4 ; + int ecode4 = 0 ; + double val5 ; + int ecode5 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOOO:FourVector_set",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_set" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FourVector_set" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + ecode3 = SWIG_AsVal_double(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FourVector_set" "', argument " "3"" of type '" "double""'"); + } + arg3 = static_cast< double >(val3); + ecode4 = SWIG_AsVal_double(obj3, &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FourVector_set" "', argument " "4"" of type '" "double""'"); + } + arg4 = static_cast< double >(val4); + ecode5 = SWIG_AsVal_double(obj4, &val5); + if (!SWIG_IsOK(ecode5)) { + SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "FourVector_set" "', argument " "5"" of type '" "double""'"); + } + arg5 = static_cast< double >(val5); + (arg1)->set(arg2,arg3,arg4,arg5); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_setX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector_setX",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_setX" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FourVector_setX" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setX(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_setY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector_setY",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_setY" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FourVector_setY" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setY(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_setZ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector_setZ",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_setZ" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FourVector_setZ" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setZ(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_setT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector_setT",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_setT" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FourVector_setT" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setT(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_setPx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector_setPx",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_setPx" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FourVector_setPx" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setPx(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_setPy(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector_setPy",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_setPy" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FourVector_setPy" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setPy(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_setPz(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector_setPz",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_setPz" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FourVector_setPz" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setPz(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector_setE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:FourVector_setE",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector_setE" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FourVector_setE" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setE(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_FourVector___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:FourVector___str__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FourVector___str__" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = HepMC_FourVector___str__(arg1); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_FourVector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = (HepMC::FourVector *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_FourVector",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_FourVector" "', argument " "1"" of type '" "HepMC::FourVector *""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *FourVector_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_HepMC__FourVector, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_ThreeVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + double arg1 ; + double arg2 ; + double arg3 ; + HepMC::ThreeVector *result = 0 ; + double val1 ; + int ecode1 = 0 ; + double val2 ; + int ecode2 = 0 ; + double val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:new_ThreeVector",&obj0,&obj1,&obj2)) SWIG_fail; + ecode1 = SWIG_AsVal_double(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_ThreeVector" "', argument " "1"" of type '" "double""'"); + } + arg1 = static_cast< double >(val1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_ThreeVector" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + ecode3 = SWIG_AsVal_double(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_ThreeVector" "', argument " "3"" of type '" "double""'"); + } + arg3 = static_cast< double >(val3); + result = (HepMC::ThreeVector *)new HepMC::ThreeVector(arg1,arg2,arg3); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__ThreeVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_ThreeVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + double arg1 ; + double arg2 ; + HepMC::ThreeVector *result = 0 ; + double val1 ; + int ecode1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_ThreeVector",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_double(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_ThreeVector" "', argument " "1"" of type '" "double""'"); + } + arg1 = static_cast< double >(val1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_ThreeVector" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + result = (HepMC::ThreeVector *)new HepMC::ThreeVector(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__ThreeVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_ThreeVector__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + double arg1 ; + HepMC::ThreeVector *result = 0 ; + double val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_ThreeVector",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_double(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_ThreeVector" "', argument " "1"" of type '" "double""'"); + } + arg1 = static_cast< double >(val1); + result = (HepMC::ThreeVector *)new HepMC::ThreeVector(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__ThreeVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_ThreeVector__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_ThreeVector")) SWIG_fail; + result = (HepMC::ThreeVector *)new HepMC::ThreeVector(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__ThreeVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_ThreeVector__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = 0 ; + HepMC::ThreeVector *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_ThreeVector",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__ThreeVector, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_ThreeVector" "', argument " "1"" of type '" "HepMC::ThreeVector const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_ThreeVector" "', argument " "1"" of type '" "HepMC::ThreeVector const &""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (HepMC::ThreeVector *)new HepMC::ThreeVector((HepMC::ThreeVector const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__ThreeVector, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_ThreeVector(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_ThreeVector__SWIG_3(self, args); + } + if (argc == 1) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__ThreeVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_ThreeVector__SWIG_6(self, args); + } + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_double(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_ThreeVector__SWIG_2(self, args); + } + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_double(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_double(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_ThreeVector__SWIG_1(self, args); + } + } + } + if (argc == 3) { + int _v; + { + int res = SWIG_AsVal_double(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_double(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_double(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_ThreeVector__SWIG_0(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_ThreeVector'.\n Possible C/C++ prototypes are:\n"" HepMC::ThreeVector(double,double,double)\n"" HepMC::ThreeVector(double,double)\n"" HepMC::ThreeVector(double)\n"" HepMC::ThreeVector()\n"" HepMC::ThreeVector(HepMC::ThreeVector const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + HepMC::ThreeVector *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ThreeVector_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_swap" "', argument " "1"" of type '" "HepMC::ThreeVector *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__ThreeVector, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ThreeVector_swap" "', argument " "2"" of type '" "HepMC::ThreeVector &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ThreeVector_swap" "', argument " "2"" of type '" "HepMC::ThreeVector &""'"); + } + arg2 = reinterpret_cast< HepMC::ThreeVector * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_x(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ThreeVector_x",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_x" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (double)((HepMC::ThreeVector const *)arg1)->x(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_y(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ThreeVector_y",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_y" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (double)((HepMC::ThreeVector const *)arg1)->y(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_z(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ThreeVector_z",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_z" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (double)((HepMC::ThreeVector const *)arg1)->z(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_setX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ThreeVector_setX",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_setX" "', argument " "1"" of type '" "HepMC::ThreeVector *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ThreeVector_setX" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setX(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_setY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ThreeVector_setY",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_setY" "', argument " "1"" of type '" "HepMC::ThreeVector *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ThreeVector_setY" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setY(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_setZ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ThreeVector_setZ",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_setZ" "', argument " "1"" of type '" "HepMC::ThreeVector *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ThreeVector_setZ" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setZ(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double arg2 ; + double arg3 ; + double arg4 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + double val3 ; + int ecode3 = 0 ; + double val4 ; + int ecode4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:ThreeVector_set",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_set" "', argument " "1"" of type '" "HepMC::ThreeVector *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ThreeVector_set" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + ecode3 = SWIG_AsVal_double(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "ThreeVector_set" "', argument " "3"" of type '" "double""'"); + } + arg3 = static_cast< double >(val3); + ecode4 = SWIG_AsVal_double(obj3, &val4); + if (!SWIG_IsOK(ecode4)) { + SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "ThreeVector_set" "', argument " "4"" of type '" "double""'"); + } + arg4 = static_cast< double >(val4); + (arg1)->set(arg2,arg3,arg4); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_phi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ThreeVector_phi",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_phi" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (double)((HepMC::ThreeVector const *)arg1)->phi(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_theta(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ThreeVector_theta",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_theta" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (double)((HepMC::ThreeVector const *)arg1)->theta(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_r(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ThreeVector_r",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_r" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (double)((HepMC::ThreeVector const *)arg1)->r(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_mag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ThreeVector_mag",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_mag" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (double)((HepMC::ThreeVector const *)arg1)->mag(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_setPhi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ThreeVector_setPhi",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_setPhi" "', argument " "1"" of type '" "HepMC::ThreeVector *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ThreeVector_setPhi" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setPhi(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_setTheta(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ThreeVector_setTheta",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_setTheta" "', argument " "1"" of type '" "HepMC::ThreeVector *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ThreeVector_setTheta" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->setTheta(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_perp2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ThreeVector_perp2",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_perp2" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (double)((HepMC::ThreeVector const *)arg1)->perp2(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector_perp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:ThreeVector_perp",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector_perp" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + result = (double)((HepMC::ThreeVector const *)arg1)->perp(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + HepMC::ThreeVector *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ThreeVector___eq__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector___eq__" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__ThreeVector, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ThreeVector___eq__" "', argument " "2"" of type '" "HepMC::ThreeVector const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ThreeVector___eq__" "', argument " "2"" of type '" "HepMC::ThreeVector const &""'"); + } + arg2 = reinterpret_cast< HepMC::ThreeVector * >(argp2); + result = (bool)((HepMC::ThreeVector const *)arg1)->operator ==((HepMC::ThreeVector const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_ThreeVector___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + HepMC::ThreeVector *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:ThreeVector___ne__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ThreeVector___ne__" "', argument " "1"" of type '" "HepMC::ThreeVector const *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__ThreeVector, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ThreeVector___ne__" "', argument " "2"" of type '" "HepMC::ThreeVector const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "ThreeVector___ne__" "', argument " "2"" of type '" "HepMC::ThreeVector const &""'"); + } + arg2 = reinterpret_cast< HepMC::ThreeVector * >(argp2); + result = (bool)((HepMC::ThreeVector const *)arg1)->operator !=((HepMC::ThreeVector const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_ThreeVector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::ThreeVector *arg1 = (HepMC::ThreeVector *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_ThreeVector",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__ThreeVector, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_ThreeVector" "', argument " "1"" of type '" "HepMC::ThreeVector *""'"); + } + arg1 = reinterpret_cast< HepMC::ThreeVector * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *ThreeVector_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_HepMC__ThreeVector, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_GenEvent__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + GenVertex *arg3 = (GenVertex *) 0 ; + WeightContainer *arg4 = 0 ; + std::vector<long,std::allocator<long > > *arg5 = 0 ; + HepMC::GenEvent *result = 0 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + void *argp5 = 0 ; + int res5 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_GenEvent",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenEvent" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenEvent" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_GenEvent" "', argument " "3"" of type '" "GenVertex *""'"); + } + arg3 = reinterpret_cast< GenVertex * >(argp3); + res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_WeightContainer, 0 | 0); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_GenEvent" "', argument " "4"" of type '" "WeightContainer const &""'"); + } + if (!argp4) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenEvent" "', argument " "4"" of type '" "WeightContainer const &""'"); + } + arg4 = reinterpret_cast< WeightContainer * >(argp4); + res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_std__vectorTlong_std__allocatorTlong_t_t, 0 | 0); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_GenEvent" "', argument " "5"" of type '" "std::vector<long,std::allocator<long > > const &""'"); + } + if (!argp5) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenEvent" "', argument " "5"" of type '" "std::vector<long,std::allocator<long > > const &""'"); + } + arg5 = reinterpret_cast< std::vector<long,std::allocator<long > > * >(argp5); + result = (HepMC::GenEvent *)new HepMC::GenEvent(arg1,arg2,arg3,(WeightContainer const &)*arg4,(std::vector<long,std::allocator<long > > const &)*arg5); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenEvent__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + GenVertex *arg3 = (GenVertex *) 0 ; + WeightContainer *arg4 = 0 ; + HepMC::GenEvent *result = 0 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:new_GenEvent",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenEvent" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenEvent" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_GenEvent" "', argument " "3"" of type '" "GenVertex *""'"); + } + arg3 = reinterpret_cast< GenVertex * >(argp3); + res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_WeightContainer, 0 | 0); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_GenEvent" "', argument " "4"" of type '" "WeightContainer const &""'"); + } + if (!argp4) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenEvent" "', argument " "4"" of type '" "WeightContainer const &""'"); + } + arg4 = reinterpret_cast< WeightContainer * >(argp4); + result = (HepMC::GenEvent *)new HepMC::GenEvent(arg1,arg2,arg3,(WeightContainer const &)*arg4); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenEvent__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + GenVertex *arg3 = (GenVertex *) 0 ; + HepMC::GenEvent *result = 0 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:new_GenEvent",&obj0,&obj1,&obj2)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenEvent" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenEvent" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_GenEvent" "', argument " "3"" of type '" "GenVertex *""'"); + } + arg3 = reinterpret_cast< GenVertex * >(argp3); + result = (HepMC::GenEvent *)new HepMC::GenEvent(arg1,arg2,arg3); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenEvent__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + HepMC::GenEvent *result = 0 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_GenEvent",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenEvent" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenEvent" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (HepMC::GenEvent *)new HepMC::GenEvent(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenEvent__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + HepMC::GenEvent *result = 0 ; + int val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenEvent",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenEvent" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = (HepMC::GenEvent *)new HepMC::GenEvent(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenEvent__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_GenEvent")) SWIG_fail; + result = (HepMC::GenEvent *)new HepMC::GenEvent(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenEvent__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + int arg2 ; + GenVertex *arg3 = (GenVertex *) 0 ; + WeightContainer *arg4 = 0 ; + std::vector<long,std::allocator<long > > *arg5 = 0 ; + HeavyIon *arg6 = 0 ; + PdfInfo *arg7 = 0 ; + HepMC::GenEvent *result = 0 ; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + void *argp5 = 0 ; + int res5 = 0 ; + void *argp6 = 0 ; + int res6 = 0 ; + void *argp7 = 0 ; + int res7 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + PyObject * obj5 = 0 ; + PyObject * obj6 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:new_GenEvent",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenEvent" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenEvent" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_GenEvent" "', argument " "3"" of type '" "GenVertex *""'"); + } + arg3 = reinterpret_cast< GenVertex * >(argp3); + res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_WeightContainer, 0 | 0); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_GenEvent" "', argument " "4"" of type '" "WeightContainer const &""'"); + } + if (!argp4) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenEvent" "', argument " "4"" of type '" "WeightContainer const &""'"); + } + arg4 = reinterpret_cast< WeightContainer * >(argp4); + res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_std__vectorTlong_std__allocatorTlong_t_t, 0 | 0); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_GenEvent" "', argument " "5"" of type '" "std::vector<long,std::allocator<long > > const &""'"); + } + if (!argp5) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenEvent" "', argument " "5"" of type '" "std::vector<long,std::allocator<long > > const &""'"); + } + arg5 = reinterpret_cast< std::vector<long,std::allocator<long > > * >(argp5); + res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_HeavyIon, 0 | 0); + if (!SWIG_IsOK(res6)) { + SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_GenEvent" "', argument " "6"" of type '" "HeavyIon const &""'"); + } + if (!argp6) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenEvent" "', argument " "6"" of type '" "HeavyIon const &""'"); + } + arg6 = reinterpret_cast< HeavyIon * >(argp6); + res7 = SWIG_ConvertPtr(obj6, &argp7, SWIGTYPE_p_PdfInfo, 0 | 0); + if (!SWIG_IsOK(res7)) { + SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_GenEvent" "', argument " "7"" of type '" "PdfInfo const &""'"); + } + if (!argp7) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenEvent" "', argument " "7"" of type '" "PdfInfo const &""'"); + } + arg7 = reinterpret_cast< PdfInfo * >(argp7); + result = (HepMC::GenEvent *)new HepMC::GenEvent(arg1,arg2,arg3,(WeightContainer const &)*arg4,(std::vector<long,std::allocator<long > > const &)*arg5,(HeavyIon const &)*arg6,(PdfInfo const &)*arg7); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenEvent__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = 0 ; + HepMC::GenEvent *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenEvent",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__GenEvent, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenEvent" "', argument " "1"" of type '" "HepMC::GenEvent const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenEvent" "', argument " "1"" of type '" "HepMC::GenEvent const &""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (HepMC::GenEvent *)new HepMC::GenEvent((HepMC::GenEvent const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenEvent(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[8]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 7); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_GenEvent__SWIG_5(self, args); + } + if (argc == 1) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenEvent__SWIG_7(self, args); + } + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_int(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_GenEvent__SWIG_4(self, args); + } + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_int(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_GenEvent__SWIG_3(self, args); + } + } + } + if (argc == 3) { + int _v; + { + int res = SWIG_AsVal_int(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenEvent__SWIG_2(self, args); + } + } + } + } + if (argc == 4) { + int _v; + { + int res = SWIG_AsVal_int(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_WeightContainer, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenEvent__SWIG_1(self, args); + } + } + } + } + } + if (argc == 5) { + int _v; + { + int res = SWIG_AsVal_int(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_WeightContainer, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[4], 0, SWIGTYPE_p_std__vectorTlong_std__allocatorTlong_t_t, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenEvent__SWIG_0(self, args); + } + } + } + } + } + } + if (argc == 7) { + int _v; + { + int res = SWIG_AsVal_int(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_WeightContainer, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[4], 0, SWIGTYPE_p_std__vectorTlong_std__allocatorTlong_t_t, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_HeavyIon, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[6], 0, SWIGTYPE_p_PdfInfo, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenEvent__SWIG_6(self, args); + } + } + } + } + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_GenEvent'.\n Possible C/C++ prototypes are:\n"" HepMC::GenEvent(int,int,GenVertex *,WeightContainer const &,std::vector<long,std::allocator<long > > const &)\n"" HepMC::GenEvent(int,int,GenVertex *,WeightContainer const &)\n"" HepMC::GenEvent(int,int,GenVertex *)\n"" HepMC::GenEvent(int,int)\n"" HepMC::GenEvent(int)\n"" HepMC::GenEvent()\n"" HepMC::GenEvent(int,int,GenVertex *,WeightContainer const &,std::vector<long,std::allocator<long > > const &,HeavyIon const &,PdfInfo const &)\n"" HepMC::GenEvent(HepMC::GenEvent const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_GenEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_GenEvent",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_GenEvent" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + HepMC::GenEvent *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_swap" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__GenEvent, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_swap" "', argument " "2"" of type '" "HepMC::GenEvent &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenEvent_swap" "', argument " "2"" of type '" "HepMC::GenEvent &""'"); + } + arg2 = reinterpret_cast< HepMC::GenEvent * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_as_str(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_as_str",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_as_str" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ((HepMC::GenEvent const *)arg1)->print(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_print_version__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + std::ostream *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_print_version",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_print_version" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__ostream, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_print_version" "', argument " "2"" of type '" "std::ostream &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenEvent_print_version" "', argument " "2"" of type '" "std::ostream &""'"); + } + arg2 = reinterpret_cast< std::ostream * >(argp2); + ((HepMC::GenEvent const *)arg1)->print_version(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_print_version__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_print_version",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_print_version" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ((HepMC::GenEvent const *)arg1)->print_version(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_print_version(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_print_version__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_std__ostream, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_print_version__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenEvent_print_version'.\n Possible C/C++ prototypes are:\n"" print_version(HepMC::GenEvent const *,std::ostream &)\n"" print_version(HepMC::GenEvent const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_barcode_to_particle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int arg2 ; + GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_barcode_to_particle",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_barcode_to_particle" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenEvent_barcode_to_particle" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (GenParticle *)((HepMC::GenEvent const *)arg1)->barcode_to_particle(arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GenParticle, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_barcode_to_vertex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int arg2 ; + GenVertex *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_barcode_to_vertex",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_barcode_to_vertex" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenEvent_barcode_to_vertex" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (GenVertex *)((HepMC::GenEvent const *)arg1)->barcode_to_vertex(arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GenVertex, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_signal_process_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_signal_process_id",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_signal_process_id" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (int)((HepMC::GenEvent const *)arg1)->signal_process_id(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_event_number(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_event_number",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_event_number" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (int)((HepMC::GenEvent const *)arg1)->event_number(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_mpi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_mpi",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_mpi" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (int)((HepMC::GenEvent const *)arg1)->mpi(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_event_scale(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_event_scale",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_event_scale" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (double)((HepMC::GenEvent const *)arg1)->event_scale(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_alphaQCD(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_alphaQCD",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_alphaQCD" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (double)((HepMC::GenEvent const *)arg1)->alphaQCD(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_alphaQED(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_alphaQED",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_alphaQED" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (double)((HepMC::GenEvent const *)arg1)->alphaQED(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_signal_process_vertex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + GenVertex *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_signal_process_vertex",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_signal_process_vertex" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (GenVertex *)((HepMC::GenEvent const *)arg1)->signal_process_vertex(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GenVertex, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_valid_beam_particles(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_valid_beam_particles",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_valid_beam_particles" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (bool)((HepMC::GenEvent const *)arg1)->valid_beam_particles(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_beam_particles(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_beam_particles",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_beam_particles" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = ((HepMC::GenEvent const *)arg1)->beam_particles(); + resultobj = SWIG_NewPointerObj((new std::pair<HepMC::GenParticle *,HepMC::GenParticle * >(static_cast< const std::pair<HepMC::GenParticle *,HepMC::GenParticle * >& >(result))), SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_weights__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + WeightContainer *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_weights",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_weights" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + { + WeightContainer &_result_ref = (arg1)->weights(); + result = (WeightContainer *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_WeightContainer, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_weights__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + WeightContainer *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_weights",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_weights" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + { + WeightContainer const &_result_ref = ((HepMC::GenEvent const *)arg1)->weights(); + result = (WeightContainer *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_WeightContainer, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_weights(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_weights__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_weights__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenEvent_weights'.\n Possible C/C++ prototypes are:\n"" weights(HepMC::GenEvent *)\n"" weights(HepMC::GenEvent const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_heavy_ion__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + HeavyIon *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_heavy_ion",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_heavy_ion" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (HeavyIon *)((HepMC::GenEvent const *)arg1)->heavy_ion(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HeavyIon, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_heavy_ion__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + HeavyIon *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_heavy_ion",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_heavy_ion" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (HeavyIon *)(arg1)->heavy_ion(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HeavyIon, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_heavy_ion(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_heavy_ion__SWIG_1(self, args); + } + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_heavy_ion__SWIG_0(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenEvent_heavy_ion'.\n Possible C/C++ prototypes are:\n"" heavy_ion(HepMC::GenEvent const *)\n"" heavy_ion(HepMC::GenEvent *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_pdf_info__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + PdfInfo *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_pdf_info",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_pdf_info" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (PdfInfo *)((HepMC::GenEvent const *)arg1)->pdf_info(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_PdfInfo, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_pdf_info__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + PdfInfo *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_pdf_info",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_pdf_info" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (PdfInfo *)(arg1)->pdf_info(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_PdfInfo, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_pdf_info(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_pdf_info__SWIG_1(self, args); + } + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_pdf_info__SWIG_0(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenEvent_pdf_info'.\n Possible C/C++ prototypes are:\n"" pdf_info(HepMC::GenEvent const *)\n"" pdf_info(HepMC::GenEvent *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_random_states(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + SwigValueWrapper< std::vector<long,std::allocator<long > > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_random_states",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_random_states" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = ((HepMC::GenEvent const *)arg1)->random_states(); + resultobj = SWIG_NewPointerObj((new std::vector<long,std::allocator<long > >(static_cast< const std::vector<long,std::allocator<long > >& >(result))), SWIGTYPE_p_std__vectorTlong_std__allocatorTlong_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_signal_process_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_signal_process_id",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_signal_process_id" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenEvent_set_signal_process_id" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + (arg1)->set_signal_process_id(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_event_number(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_event_number",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_event_number" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenEvent_set_event_number" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + (arg1)->set_event_number(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_mpi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_mpi",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_mpi" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenEvent_set_mpi" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + (arg1)->set_mpi(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_event_scale(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_event_scale",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_event_scale" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenEvent_set_event_scale" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->set_event_scale(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_alphaQCD(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_alphaQCD",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_alphaQCD" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenEvent_set_alphaQCD" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->set_alphaQCD(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_alphaQED(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + double arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_alphaQED",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_alphaQED" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenEvent_set_alphaQED" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + (arg1)->set_alphaQED(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_signal_process_vertex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + GenVertex *arg2 = (GenVertex *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_signal_process_vertex",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_signal_process_vertex" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_set_signal_process_vertex" "', argument " "2"" of type '" "GenVertex *""'"); + } + arg2 = reinterpret_cast< GenVertex * >(argp2); + (arg1)->set_signal_process_vertex(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_beam_particles__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + GenParticle *arg2 = (GenParticle *) 0 ; + GenParticle *arg3 = (GenParticle *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenEvent_set_beam_particles",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_beam_particles" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_set_beam_particles" "', argument " "2"" of type '" "GenParticle *""'"); + } + arg2 = reinterpret_cast< GenParticle * >(argp2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "GenEvent_set_beam_particles" "', argument " "3"" of type '" "GenParticle *""'"); + } + arg3 = reinterpret_cast< GenParticle * >(argp3); + result = (bool)(arg1)->set_beam_particles(arg2,arg3); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_beam_particles__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_beam_particles",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_beam_particles" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_set_beam_particles" "', argument " "2"" of type '" "std::pair<HepMC::GenParticle *,HepMC::GenParticle * > const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenEvent_set_beam_particles" "', argument " "2"" of type '" "std::pair<HepMC::GenParticle *,HepMC::GenParticle * > const &""'"); + } + arg2 = reinterpret_cast< std::pair<HepMC::GenParticle *,HepMC::GenParticle * > * >(argp2); + result = (bool)(arg1)->set_beam_particles((std::pair<HepMC::GenParticle *,HepMC::GenParticle * > const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_beam_particles(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_set_beam_particles__SWIG_1(self, args); + } + } + } + if (argc == 3) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenEvent_set_beam_particles__SWIG_0(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenEvent_set_beam_particles'.\n Possible C/C++ prototypes are:\n"" set_beam_particles(HepMC::GenEvent *,GenParticle *,GenParticle *)\n"" set_beam_particles(HepMC::GenEvent *,std::pair<HepMC::GenParticle *,HepMC::GenParticle * > const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_random_states(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + std::vector<long,std::allocator<long > > *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_random_states",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_random_states" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTlong_std__allocatorTlong_t_t, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_set_random_states" "', argument " "2"" of type '" "std::vector<long,std::allocator<long > > const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenEvent_set_random_states" "', argument " "2"" of type '" "std::vector<long,std::allocator<long > > const &""'"); + } + arg2 = reinterpret_cast< std::vector<long,std::allocator<long > > * >(argp2); + (arg1)->set_random_states((std::vector<long,std::allocator<long > > const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_heavy_ion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + HeavyIon *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_heavy_ion",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_heavy_ion" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HeavyIon, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_set_heavy_ion" "', argument " "2"" of type '" "HeavyIon const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenEvent_set_heavy_ion" "', argument " "2"" of type '" "HeavyIon const &""'"); + } + arg2 = reinterpret_cast< HeavyIon * >(argp2); + (arg1)->set_heavy_ion((HeavyIon const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_set_pdf_info(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + PdfInfo *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_set_pdf_info",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_set_pdf_info" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_PdfInfo, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_set_pdf_info" "', argument " "2"" of type '" "PdfInfo const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenEvent_set_pdf_info" "', argument " "2"" of type '" "PdfInfo const &""'"); + } + arg2 = reinterpret_cast< PdfInfo * >(argp2); + (arg1)->set_pdf_info((PdfInfo const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_particles_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_particles_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_particles_size" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (int)((HepMC::GenEvent const *)arg1)->particles_size(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_particles_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_particles_empty",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_particles_empty" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (bool)((HepMC::GenEvent const *)arg1)->particles_empty(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_vertices_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_vertices_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_vertices_size" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (int)((HepMC::GenEvent const *)arg1)->vertices_size(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_vertices_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_vertices_empty",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_vertices_empty" "', argument " "1"" of type '" "HepMC::GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = (bool)((HepMC::GenEvent const *)arg1)->vertices_empty(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_add_vertex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + GenVertex *arg2 = (GenVertex *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_add_vertex",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_add_vertex" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_add_vertex" "', argument " "2"" of type '" "GenVertex *""'"); + } + arg2 = reinterpret_cast< GenVertex * >(argp2); + result = (bool)(arg1)->add_vertex(arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_remove_vertex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + GenVertex *arg2 = (GenVertex *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenEvent_remove_vertex",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_remove_vertex" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenEvent_remove_vertex" "', argument " "2"" of type '" "GenVertex *""'"); + } + arg2 = reinterpret_cast< GenVertex * >(argp2); + result = (bool)(arg1)->remove_vertex(arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_clear",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_clear" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + (arg1)->clear(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent___str__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent___str__" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = HepMC_GenEvent___str__(arg1); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_summary(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_summary",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_summary" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = HepMC_GenEvent_summary(arg1); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_particles(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_particles",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_particles" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = HepMC_GenEvent_particles(arg1); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > >(static_cast< const std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > >& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_vertices(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_vertices",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_vertices" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = HepMC_GenEvent_vertices(arg1); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > >(static_cast< const std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > >& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenEvent_fsParticles(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = (HepMC::GenEvent *) 0 ; + std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenEvent_fsParticles",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenEvent_fsParticles" "', argument " "1"" of type '" "HepMC::GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = HepMC_GenEvent_fsParticles(arg1); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > >(static_cast< const std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > >& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *GenEvent_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_HepMC__GenEvent, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_GenParticle__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_GenParticle")) SWIG_fail; + result = (HepMC::GenParticle *)new HepMC::GenParticle(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticle__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = 0 ; + int arg2 ; + int arg3 ; + Flow *arg4 = 0 ; + Polarization *arg5 = 0 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + void *argp5 = 0 ; + int res5 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_GenParticle",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenParticle" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_GenParticle" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_Flow, 0 | 0); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_GenParticle" "', argument " "4"" of type '" "Flow const &""'"); + } + if (!argp4) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenParticle" "', argument " "4"" of type '" "Flow const &""'"); + } + arg4 = reinterpret_cast< Flow * >(argp4); + res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_Polarization, 0 | 0); + if (!SWIG_IsOK(res5)) { + SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_GenParticle" "', argument " "5"" of type '" "Polarization const &""'"); + } + if (!argp5) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenParticle" "', argument " "5"" of type '" "Polarization const &""'"); + } + arg5 = reinterpret_cast< Polarization * >(argp5); + result = (HepMC::GenParticle *)new HepMC::GenParticle((HepMC::FourVector const &)*arg1,arg2,arg3,(Flow const &)*arg4,(Polarization const &)*arg5); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticle__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = 0 ; + int arg2 ; + int arg3 ; + Flow *arg4 = 0 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:new_GenParticle",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenParticle" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_GenParticle" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_Flow, 0 | 0); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_GenParticle" "', argument " "4"" of type '" "Flow const &""'"); + } + if (!argp4) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenParticle" "', argument " "4"" of type '" "Flow const &""'"); + } + arg4 = reinterpret_cast< Flow * >(argp4); + result = (HepMC::GenParticle *)new HepMC::GenParticle((HepMC::FourVector const &)*arg1,arg2,arg3,(Flow const &)*arg4); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticle__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = 0 ; + int arg2 ; + int arg3 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:new_GenParticle",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenParticle" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_GenParticle" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + result = (HepMC::GenParticle *)new HepMC::GenParticle((HepMC::FourVector const &)*arg1,arg2,arg3); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticle__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = 0 ; + int arg2 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_GenParticle",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenParticle" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (HepMC::GenParticle *)new HepMC::GenParticle((HepMC::FourVector const &)*arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticle__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = 0 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenParticle",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__GenParticle, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::GenParticle const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenParticle" "', argument " "1"" of type '" "HepMC::GenParticle const &""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = (HepMC::GenParticle *)new HepMC::GenParticle((HepMC::GenParticle const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticle(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[6]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 5); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_GenParticle__SWIG_0(self, args); + } + if (argc == 1) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenParticle__SWIG_5(self, args); + } + } + if (argc == 2) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__FourVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_GenParticle__SWIG_4(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__FourVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_GenParticle__SWIG_3(self, args); + } + } + } + } + if (argc == 4) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__FourVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_Flow, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenParticle__SWIG_2(self, args); + } + } + } + } + } + if (argc == 5) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__FourVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_Flow, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[4], 0, SWIGTYPE_p_Polarization, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenParticle__SWIG_1(self, args); + } + } + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_GenParticle'.\n Possible C/C++ prototypes are:\n"" HepMC::GenParticle()\n"" HepMC::GenParticle(HepMC::FourVector const &,int,int,Flow const &,Polarization const &)\n"" HepMC::GenParticle(HepMC::FourVector const &,int,int,Flow const &)\n"" HepMC::GenParticle(HepMC::FourVector const &,int,int)\n"" HepMC::GenParticle(HepMC::FourVector const &,int)\n"" HepMC::GenParticle(HepMC::GenParticle const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_GenParticle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_GenParticle",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_GenParticle" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::GenParticle *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_swap" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__GenParticle, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticle_swap" "', argument " "2"" of type '" "HepMC::GenParticle &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenParticle_swap" "', argument " "2"" of type '" "HepMC::GenParticle &""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::GenParticle *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle___eq__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle___eq__" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__GenParticle, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticle___eq__" "', argument " "2"" of type '" "HepMC::GenParticle const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenParticle___eq__" "', argument " "2"" of type '" "HepMC::GenParticle const &""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + result = (bool)((HepMC::GenParticle const *)arg1)->operator ==((HepMC::GenParticle const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::GenParticle *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle___ne__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle___ne__" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__GenParticle, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticle___ne__" "', argument " "2"" of type '" "HepMC::GenParticle const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenParticle___ne__" "', argument " "2"" of type '" "HepMC::GenParticle const &""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + result = (bool)((HepMC::GenParticle const *)arg1)->operator !=((HepMC::GenParticle const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_to_vec4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::FourVector result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_to_vec4",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_to_vec4" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = ((HepMC::GenParticle const *)arg1)->operator HepMC::FourVector(); + resultobj = SWIG_NewPointerObj((new HepMC::FourVector(static_cast< const HepMC::FourVector& >(result))), SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_momentum(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::FourVector result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_momentum",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_momentum" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = ((HepMC::GenParticle const *)arg1)->momentum(); + resultobj = SWIG_NewPointerObj((new HepMC::FourVector(static_cast< const HepMC::FourVector& >(result))), SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_pdg_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_pdg_id",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_pdg_id" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = (int)((HepMC::GenParticle const *)arg1)->pdg_id(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_status(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_status",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_status" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = (int)((HepMC::GenParticle const *)arg1)->status(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_flow__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + Flow result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_flow",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_flow" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = ((HepMC::GenParticle const *)arg1)->flow(); + resultobj = SWIG_NewPointerObj((new Flow(static_cast< const Flow& >(result))), SWIGTYPE_p_Flow, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_flow__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + int arg2 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_flow",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_flow" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticle_flow" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (int)((HepMC::GenParticle const *)arg1)->flow(arg2); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_flow(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticle_flow__SWIG_0(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_GenParticle_flow__SWIG_1(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticle_flow'.\n Possible C/C++ prototypes are:\n"" flow(HepMC::GenParticle const *)\n"" flow(HepMC::GenParticle const *,int)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_polarization(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + Polarization result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_polarization",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_polarization" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = ((HepMC::GenParticle const *)arg1)->polarization(); + resultobj = SWIG_NewPointerObj((new Polarization(static_cast< const Polarization& >(result))), SWIGTYPE_p_Polarization, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_production_vertex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::GenVertex *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_production_vertex",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_production_vertex" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = (HepMC::GenVertex *)((HepMC::GenParticle const *)arg1)->production_vertex(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_end_vertex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::GenVertex *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_end_vertex",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_end_vertex" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = (HepMC::GenVertex *)((HepMC::GenParticle const *)arg1)->end_vertex(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_parent_event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::GenEvent *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_parent_event",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_parent_event" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = (HepMC::GenEvent *)((HepMC::GenParticle const *)arg1)->parent_event(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_generated_mass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_generated_mass",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_generated_mass" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = (double)((HepMC::GenParticle const *)arg1)->generated_mass(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_generatedMass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_generatedMass",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_generatedMass" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = (double)((HepMC::GenParticle const *)arg1)->generatedMass(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_barcode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_barcode",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_barcode" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = (int)((HepMC::GenParticle const *)arg1)->barcode(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_suggest_barcode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + int arg2 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_suggest_barcode",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_suggest_barcode" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticle_suggest_barcode" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (bool)(arg1)->suggest_barcode(arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_momentum(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::FourVector *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_set_momentum",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_momentum" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticle_set_momentum" "', argument " "2"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenParticle_set_momentum" "', argument " "2"" of type '" "HepMC::FourVector const &""'"); + } + arg2 = reinterpret_cast< HepMC::FourVector * >(argp2); + (arg1)->set_momentum((HepMC::FourVector const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_pdg_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_set_pdg_id",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_pdg_id" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticle_set_pdg_id" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + (arg1)->set_pdg_id(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_status__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_set_status",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_status" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticle_set_status" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + (arg1)->set_status(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_status__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_set_status",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_status" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + (arg1)->set_status(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_status(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticle_set_status__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_GenParticle_set_status__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticle_set_status'.\n Possible C/C++ prototypes are:\n"" set_status(HepMC::GenParticle *,int)\n"" set_status(HepMC::GenParticle *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_flow__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + Flow *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_set_flow",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_flow" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_Flow, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticle_set_flow" "', argument " "2"" of type '" "Flow const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenParticle_set_flow" "', argument " "2"" of type '" "Flow const &""'"); + } + arg2 = reinterpret_cast< Flow * >(argp2); + (arg1)->set_flow((Flow const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_flow__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + int arg2 ; + int arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenParticle_set_flow",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_flow" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticle_set_flow" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "GenParticle_set_flow" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + (arg1)->set_flow(arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_flow__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_set_flow",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_flow" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticle_set_flow" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + (arg1)->set_flow(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_flow(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_Flow, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticle_set_flow__SWIG_0(self, args); + } + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_GenParticle_set_flow__SWIG_2(self, args); + } + } + } + if (argc == 3) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_GenParticle_set_flow__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticle_set_flow'.\n Possible C/C++ prototypes are:\n"" set_flow(HepMC::GenParticle *,Flow const &)\n"" set_flow(HepMC::GenParticle *,int,int)\n"" set_flow(HepMC::GenParticle *,int)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_polarization__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + Polarization *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_set_polarization",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_polarization" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_Polarization, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticle_set_polarization" "', argument " "2"" of type '" "Polarization const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenParticle_set_polarization" "', argument " "2"" of type '" "Polarization const &""'"); + } + arg2 = reinterpret_cast< Polarization * >(argp2); + (arg1)->set_polarization((Polarization const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_polarization__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle_set_polarization",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_polarization" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + (arg1)->set_polarization(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_polarization(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticle_set_polarization__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_Polarization, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticle_set_polarization__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticle_set_polarization'.\n Possible C/C++ prototypes are:\n"" set_polarization(HepMC::GenParticle *,Polarization const &)\n"" set_polarization(HepMC::GenParticle *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_set_generated_mass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + double *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + double temp2 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_set_generated_mass",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_set_generated_mass" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticle_set_generated_mass" "', argument " "2"" of type '" "double""'"); + } + temp2 = static_cast< double >(val2); + arg2 = &temp2; + (arg1)->set_generated_mass((double const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle_setGeneratedMass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + double *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + double temp2 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticle_setGeneratedMass",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle_setGeneratedMass" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticle_setGeneratedMass" "', argument " "2"" of type '" "double""'"); + } + temp2 = static_cast< double >(val2); + arg2 = &temp2; + (arg1)->setGeneratedMass((double const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticle___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticle___str__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticle___str__" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + result = HepMC_GenParticle___str__((HepMC::GenParticle const *)arg1); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *GenParticle_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_HepMC__GenParticle, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_GenVertex__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = 0 ; + int arg2 ; + WeightContainer *arg3 = 0 ; + HepMC::GenVertex *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:new_GenVertex",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenVertex" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenVertex" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenVertex" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_WeightContainer, 0 | 0); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_GenVertex" "', argument " "3"" of type '" "WeightContainer const &""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenVertex" "', argument " "3"" of type '" "WeightContainer const &""'"); + } + arg3 = reinterpret_cast< WeightContainer * >(argp3); + result = (HepMC::GenVertex *)new HepMC::GenVertex((HepMC::FourVector const &)*arg1,arg2,(WeightContainer const &)*arg3); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenVertex, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertex__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = 0 ; + int arg2 ; + HepMC::GenVertex *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_GenVertex",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenVertex" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenVertex" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GenVertex" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (HepMC::GenVertex *)new HepMC::GenVertex((HepMC::FourVector const &)*arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenVertex, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertex__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::FourVector *arg1 = 0 ; + HepMC::GenVertex *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenVertex",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenVertex" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenVertex" "', argument " "1"" of type '" "HepMC::FourVector const &""'"); + } + arg1 = reinterpret_cast< HepMC::FourVector * >(argp1); + result = (HepMC::GenVertex *)new HepMC::GenVertex((HepMC::FourVector const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenVertex, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertex__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_GenVertex")) SWIG_fail; + result = (HepMC::GenVertex *)new HepMC::GenVertex(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenVertex, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertex__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = 0 ; + HepMC::GenVertex *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenVertex",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__GenVertex, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenVertex" "', argument " "1"" of type '" "HepMC::GenVertex const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenVertex" "', argument " "1"" of type '" "HepMC::GenVertex const &""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = (HepMC::GenVertex *)new HepMC::GenVertex((HepMC::GenVertex const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenVertex, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertex(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_GenVertex__SWIG_3(self, args); + } + if (argc == 1) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__FourVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenVertex__SWIG_2(self, args); + } + } + if (argc == 1) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenVertex__SWIG_4(self, args); + } + } + if (argc == 2) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__FourVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_GenVertex__SWIG_1(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_HepMC__FourVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_WeightContainer, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenVertex__SWIG_0(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_GenVertex'.\n Possible C/C++ prototypes are:\n"" HepMC::GenVertex(HepMC::FourVector const &,int,WeightContainer const &)\n"" HepMC::GenVertex(HepMC::FourVector const &,int)\n"" HepMC::GenVertex(HepMC::FourVector const &)\n"" HepMC::GenVertex()\n"" HepMC::GenVertex(HepMC::GenVertex const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_GenVertex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_GenVertex",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_GenVertex" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::GenVertex *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_swap" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__GenVertex, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertex_swap" "', argument " "2"" of type '" "HepMC::GenVertex &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenVertex_swap" "', argument " "2"" of type '" "HepMC::GenVertex &""'"); + } + arg2 = reinterpret_cast< HepMC::GenVertex * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::GenVertex *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex___eq__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex___eq__" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__GenVertex, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertex___eq__" "', argument " "2"" of type '" "HepMC::GenVertex const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenVertex___eq__" "', argument " "2"" of type '" "HepMC::GenVertex const &""'"); + } + arg2 = reinterpret_cast< HepMC::GenVertex * >(argp2); + result = (bool)((HepMC::GenVertex const *)arg1)->operator ==((HepMC::GenVertex const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::GenVertex *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex___ne__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex___ne__" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__GenVertex, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertex___ne__" "', argument " "2"" of type '" "HepMC::GenVertex const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenVertex___ne__" "', argument " "2"" of type '" "HepMC::GenVertex const &""'"); + } + arg2 = reinterpret_cast< HepMC::GenVertex * >(argp2); + result = (bool)((HepMC::GenVertex const *)arg1)->operator !=((HepMC::GenVertex const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_check_momentum_conservation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_check_momentum_conservation",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_check_momentum_conservation" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = (double)((HepMC::GenVertex const *)arg1)->check_momentum_conservation(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_add_particle_in(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::GenParticle *arg2 = (HepMC::GenParticle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex_add_particle_in",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_add_particle_in" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertex_add_particle_in" "', argument " "2"" of type '" "HepMC::GenParticle *""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + (arg1)->add_particle_in(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_add_particle_out(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::GenParticle *arg2 = (HepMC::GenParticle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex_add_particle_out",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_add_particle_out" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertex_add_particle_out" "', argument " "2"" of type '" "HepMC::GenParticle *""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + (arg1)->add_particle_out(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_remove_particle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::GenParticle *arg2 = (HepMC::GenParticle *) 0 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex_remove_particle",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_remove_particle" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertex_remove_particle" "', argument " "2"" of type '" "HepMC::GenParticle *""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + result = (HepMC::GenParticle *)(arg1)->remove_particle(arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_to_vec4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::FourVector result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_to_vec4",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_to_vec4" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = ((HepMC::GenVertex const *)arg1)->operator HepMC::FourVector(); + resultobj = SWIG_NewPointerObj((new HepMC::FourVector(static_cast< const HepMC::FourVector& >(result))), SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_to_vec3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::ThreeVector result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_to_vec3",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_to_vec3" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = ((HepMC::GenVertex const *)arg1)->operator HepMC::ThreeVector(); + resultobj = SWIG_NewPointerObj((new HepMC::ThreeVector(static_cast< const HepMC::ThreeVector& >(result))), SWIGTYPE_p_HepMC__ThreeVector, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_parent_event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::GenEvent *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_parent_event",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_parent_event" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = (HepMC::GenEvent *)((HepMC::GenVertex const *)arg1)->parent_event(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_point3d(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::ThreeVector result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_point3d",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_point3d" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = ((HepMC::GenVertex const *)arg1)->point3d(); + resultobj = SWIG_NewPointerObj((new HepMC::ThreeVector(static_cast< const HepMC::ThreeVector& >(result))), SWIGTYPE_p_HepMC__ThreeVector, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_position(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::FourVector result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_position",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_position" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = ((HepMC::GenVertex const *)arg1)->position(); + resultobj = SWIG_NewPointerObj((new HepMC::FourVector(static_cast< const HepMC::FourVector& >(result))), SWIGTYPE_p_HepMC__FourVector, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_set_position__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::FourVector *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex_set_position",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_set_position" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__FourVector, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertex_set_position" "', argument " "2"" of type '" "HepMC::FourVector const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenVertex_set_position" "', argument " "2"" of type '" "HepMC::FourVector const &""'"); + } + arg2 = reinterpret_cast< HepMC::FourVector * >(argp2); + (arg1)->set_position((HepMC::FourVector const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_set_position__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_set_position",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_set_position" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + (arg1)->set_position(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_set_position(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertex_set_position__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_HepMC__FourVector, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertex_set_position__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertex_set_position'.\n Possible C/C++ prototypes are:\n"" set_position(HepMC::GenVertex *,HepMC::FourVector const &)\n"" set_position(HepMC::GenVertex *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_id",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_id" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = (int)((HepMC::GenVertex const *)arg1)->id(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_set_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex_set_id",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_set_id" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertex_set_id" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + (arg1)->set_id(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_barcode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_barcode",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_barcode" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = (int)((HepMC::GenVertex const *)arg1)->barcode(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_suggest_barcode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + int arg2 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex_suggest_barcode",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_suggest_barcode" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertex_suggest_barcode" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (bool)(arg1)->suggest_barcode(arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_weights__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + WeightContainer *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_weights",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_weights" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + { + WeightContainer &_result_ref = (arg1)->weights(); + result = (WeightContainer *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_WeightContainer, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_weights__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + WeightContainer *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_weights",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_weights" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + { + WeightContainer const &_result_ref = ((HepMC::GenVertex const *)arg1)->weights(); + result = (WeightContainer *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_WeightContainer, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_weights(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertex_weights__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertex_weights__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertex_weights'.\n Possible C/C++ prototypes are:\n"" weights(HepMC::GenVertex *)\n"" weights(HepMC::GenVertex const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_particles_in_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_particles_in_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_particles_in_size" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = (int)((HepMC::GenVertex const *)arg1)->particles_in_size(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_particles_out_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_particles_out_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_particles_out_size" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = (int)((HepMC::GenVertex const *)arg1)->particles_out_size(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex___str__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex___str__" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = HepMC_GenVertex___str__((HepMC::GenVertex const *)arg1); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_particles_in(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_particles_in",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_particles_in" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = HepMC_GenVertex_particles_in((HepMC::GenVertex const *)arg1); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >(static_cast< const std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_particles_out(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_particles_out",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_particles_out" "', argument " "1"" of type '" "HepMC::GenVertex const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = HepMC_GenVertex_particles_out((HepMC::GenVertex const *)arg1); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >(static_cast< const std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_particles__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::IteratorRange arg2 ; + std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex_particles",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_particles" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertex_particles" "', argument " "2"" of type '" "HepMC::IteratorRange""'"); + } + arg2 = static_cast< HepMC::IteratorRange >(val2); + result = HepMC_GenVertex_particles__SWIG_0(arg1,arg2); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > >(static_cast< const std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > >& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_particles__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_particles",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_particles" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = HepMC_GenVertex_particles__SWIG_0(arg1); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > >(static_cast< const std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > >& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_particles(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertex_particles__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_GenVertex_particles__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertex_particles'.\n Possible C/C++ prototypes are:\n"" particles(HepMC::GenVertex *,HepMC::IteratorRange)\n"" particles(HepMC::GenVertex *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_vertices__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + HepMC::IteratorRange arg2 ; + std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertex_vertices",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_vertices" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertex_vertices" "', argument " "2"" of type '" "HepMC::IteratorRange""'"); + } + arg2 = static_cast< HepMC::IteratorRange >(val2); + result = HepMC_GenVertex_vertices__SWIG_0(arg1,arg2); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > >(static_cast< const std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > >& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_vertices__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenVertex *arg1 = (HepMC::GenVertex *) 0 ; + std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertex_vertices",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenVertex, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertex_vertices" "', argument " "1"" of type '" "HepMC::GenVertex *""'"); + } + arg1 = reinterpret_cast< HepMC::GenVertex * >(argp1); + result = HepMC_GenVertex_vertices__SWIG_0(arg1); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > >(static_cast< const std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > >& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertex_vertices(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertex_vertices__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenVertex, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_GenVertex_vertices__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertex_vertices'.\n Possible C/C++ prototypes are:\n"" vertices(HepMC::GenVertex *,HepMC::IteratorRange)\n"" vertices(HepMC::GenVertex *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *GenVertex_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_HepMC__GenVertex, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_delete_IO_BaseClass(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_BaseClass *arg1 = (HepMC::IO_BaseClass *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_IO_BaseClass",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_BaseClass, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_IO_BaseClass" "', argument " "1"" of type '" "HepMC::IO_BaseClass *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_BaseClass * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_BaseClass_write_event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_BaseClass *arg1 = (HepMC::IO_BaseClass *) 0 ; + HepMC::GenEvent *arg2 = (HepMC::GenEvent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_BaseClass_write_event",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_BaseClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_BaseClass_write_event" "', argument " "1"" of type '" "HepMC::IO_BaseClass *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_BaseClass * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_BaseClass_write_event" "', argument " "2"" of type '" "HepMC::GenEvent const *""'"); + } + arg2 = reinterpret_cast< HepMC::GenEvent * >(argp2); + (arg1)->write_event((HepMC::GenEvent const *)arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_BaseClass_fill_next_event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_BaseClass *arg1 = (HepMC::IO_BaseClass *) 0 ; + HepMC::GenEvent *arg2 = (HepMC::GenEvent *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_BaseClass_fill_next_event",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_BaseClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_BaseClass_fill_next_event" "', argument " "1"" of type '" "HepMC::IO_BaseClass *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_BaseClass * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_BaseClass_fill_next_event" "', argument " "2"" of type '" "HepMC::GenEvent *""'"); + } + arg2 = reinterpret_cast< HepMC::GenEvent * >(argp2); + result = (bool)(arg1)->fill_next_event(arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_BaseClass_write_particle_data_table(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_BaseClass *arg1 = (HepMC::IO_BaseClass *) 0 ; + ParticleDataTable *arg2 = (ParticleDataTable *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_BaseClass_write_particle_data_table",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_BaseClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_BaseClass_write_particle_data_table" "', argument " "1"" of type '" "HepMC::IO_BaseClass *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_BaseClass * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ParticleDataTable, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_BaseClass_write_particle_data_table" "', argument " "2"" of type '" "ParticleDataTable const *""'"); + } + arg2 = reinterpret_cast< ParticleDataTable * >(argp2); + (arg1)->write_particle_data_table((ParticleDataTable const *)arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_BaseClass_fill_particle_data_table(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_BaseClass *arg1 = (HepMC::IO_BaseClass *) 0 ; + ParticleDataTable *arg2 = (ParticleDataTable *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_BaseClass_fill_particle_data_table",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_BaseClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_BaseClass_fill_particle_data_table" "', argument " "1"" of type '" "HepMC::IO_BaseClass *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_BaseClass * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ParticleDataTable, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_BaseClass_fill_particle_data_table" "', argument " "2"" of type '" "ParticleDataTable *""'"); + } + arg2 = reinterpret_cast< ParticleDataTable * >(argp2); + result = (bool)(arg1)->fill_particle_data_table(arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_BaseClass_read_next_event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_BaseClass *arg1 = (HepMC::IO_BaseClass *) 0 ; + HepMC::GenEvent *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:IO_BaseClass_read_next_event",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_BaseClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_BaseClass_read_next_event" "', argument " "1"" of type '" "HepMC::IO_BaseClass *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_BaseClass * >(argp1); + result = (HepMC::GenEvent *)(arg1)->read_next_event(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_BaseClass_read_particle_data_table(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_BaseClass *arg1 = (HepMC::IO_BaseClass *) 0 ; + ParticleDataTable *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:IO_BaseClass_read_particle_data_table",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_BaseClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_BaseClass_read_particle_data_table" "', argument " "1"" of type '" "HepMC::IO_BaseClass *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_BaseClass * >(argp1); + result = (ParticleDataTable *)(arg1)->read_particle_data_table(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ParticleDataTable, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_BaseClass___rshift____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_BaseClass *arg1 = (HepMC::IO_BaseClass *) 0 ; + HepMC::GenEvent **arg2 = 0 ; + HepMC::GenEvent **result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_BaseClass___rshift__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_BaseClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_BaseClass___rshift__" "', argument " "1"" of type '" "HepMC::IO_BaseClass *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_BaseClass * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_p_HepMC__GenEvent, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_BaseClass___rshift__" "', argument " "2"" of type '" "HepMC::GenEvent *&""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "IO_BaseClass___rshift__" "', argument " "2"" of type '" "HepMC::GenEvent *&""'"); + } + arg2 = reinterpret_cast< HepMC::GenEvent ** >(argp2); + { + HepMC::GenEvent *&_result_ref = (arg1)->operator >>(*arg2); + result = (HepMC::GenEvent **) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_HepMC__GenEvent, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_BaseClass___rshift____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_BaseClass *arg1 = (HepMC::IO_BaseClass *) 0 ; + ParticleDataTable **arg2 = 0 ; + ParticleDataTable **result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_BaseClass___rshift__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_BaseClass, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_BaseClass___rshift__" "', argument " "1"" of type '" "HepMC::IO_BaseClass *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_BaseClass * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_p_ParticleDataTable, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_BaseClass___rshift__" "', argument " "2"" of type '" "ParticleDataTable *&""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "IO_BaseClass___rshift__" "', argument " "2"" of type '" "ParticleDataTable *&""'"); + } + arg2 = reinterpret_cast< ParticleDataTable ** >(argp2); + { + ParticleDataTable *&_result_ref = (arg1)->operator >>(*arg2); + result = (ParticleDataTable **) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_ParticleDataTable, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_BaseClass___rshift__(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__IO_BaseClass, 0); + _v = SWIG_CheckState(res); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_p_HepMC__GenEvent, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_IO_BaseClass___rshift____SWIG_0(self, args); + } + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__IO_BaseClass, 0); + _v = SWIG_CheckState(res); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_p_ParticleDataTable, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_IO_BaseClass___rshift____SWIG_1(self, args); + } + } + } + +fail: + Py_INCREF(Py_NotImplemented); + return Py_NotImplemented; +} + + +SWIGINTERN PyObject *IO_BaseClass_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_HepMC__IO_BaseClass, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_IO_GenEvent__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + std::ios::openmode arg2 ; + HepMC::IO_GenEvent *result = 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + void *argp2 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_IO_GenEvent",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_IO_GenEvent" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + { + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__ios__openmode, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_IO_GenEvent" "', argument " "2"" of type '" "std::ios::openmode""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_IO_GenEvent" "', argument " "2"" of type '" "std::ios::openmode""'"); + } else { + std::ios::openmode * temp = reinterpret_cast< std::ios::openmode * >(argp2); + arg2 = *temp; + if (SWIG_IsNewObj(res2)) delete temp; + } + } + result = (HepMC::IO_GenEvent *)new HepMC::IO_GenEvent((char const *)arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__IO_GenEvent, SWIG_POINTER_NEW | 0 ); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_IO_GenEvent__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + char *arg1 = (char *) 0 ; + HepMC::IO_GenEvent *result = 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_IO_GenEvent",&obj0)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_IO_GenEvent" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + result = (HepMC::IO_GenEvent *)new HepMC::IO_GenEvent((char const *)arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__IO_GenEvent, SWIG_POINTER_NEW | 0 ); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_IO_GenEvent__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_IO_GenEvent")) SWIG_fail; + result = (HepMC::IO_GenEvent *)new HepMC::IO_GenEvent(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__IO_GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_IO_GenEvent__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::istream *arg1 = 0 ; + HepMC::IO_GenEvent *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_IO_GenEvent",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_std__istream, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_IO_GenEvent" "', argument " "1"" of type '" "std::istream &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_IO_GenEvent" "', argument " "1"" of type '" "std::istream &""'"); + } + arg1 = reinterpret_cast< std::istream * >(argp1); + result = (HepMC::IO_GenEvent *)new HepMC::IO_GenEvent(*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__IO_GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_IO_GenEvent__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::ostream *arg1 = 0 ; + HepMC::IO_GenEvent *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_IO_GenEvent",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_std__ostream, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_IO_GenEvent" "', argument " "1"" of type '" "std::ostream &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_IO_GenEvent" "', argument " "1"" of type '" "std::ostream &""'"); + } + arg1 = reinterpret_cast< std::ostream * >(argp1); + result = (HepMC::IO_GenEvent *)new HepMC::IO_GenEvent(*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__IO_GenEvent, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_IO_GenEvent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *arg1 = (HepMC::IO_GenEvent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_IO_GenEvent",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_GenEvent, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_IO_GenEvent" "', argument " "1"" of type '" "HepMC::IO_GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_GenEvent * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_GenEvent_write_event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *arg1 = (HepMC::IO_GenEvent *) 0 ; + HepMC::GenEvent *arg2 = (HepMC::GenEvent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_GenEvent_write_event",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_GenEvent_write_event" "', argument " "1"" of type '" "HepMC::IO_GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_GenEvent_write_event" "', argument " "2"" of type '" "HepMC::GenEvent const *""'"); + } + arg2 = reinterpret_cast< HepMC::GenEvent * >(argp2); + (arg1)->write_event((HepMC::GenEvent const *)arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_GenEvent_fill_next_event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *arg1 = (HepMC::IO_GenEvent *) 0 ; + HepMC::GenEvent *arg2 = (HepMC::GenEvent *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_GenEvent_fill_next_event",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_GenEvent_fill_next_event" "', argument " "1"" of type '" "HepMC::IO_GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_GenEvent_fill_next_event" "', argument " "2"" of type '" "HepMC::GenEvent *""'"); + } + arg2 = reinterpret_cast< HepMC::GenEvent * >(argp2); + result = (bool)(arg1)->fill_next_event(arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_GenEvent_write_particle_data_table(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *arg1 = (HepMC::IO_GenEvent *) 0 ; + ParticleDataTable *arg2 = (ParticleDataTable *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_GenEvent_write_particle_data_table",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_GenEvent_write_particle_data_table" "', argument " "1"" of type '" "HepMC::IO_GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ParticleDataTable, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_GenEvent_write_particle_data_table" "', argument " "2"" of type '" "ParticleDataTable const *""'"); + } + arg2 = reinterpret_cast< ParticleDataTable * >(argp2); + (arg1)->write_particle_data_table((ParticleDataTable const *)arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_GenEvent_fill_particle_data_table(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *arg1 = (HepMC::IO_GenEvent *) 0 ; + ParticleDataTable *arg2 = (ParticleDataTable *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_GenEvent_fill_particle_data_table",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_GenEvent_fill_particle_data_table" "', argument " "1"" of type '" "HepMC::IO_GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_GenEvent * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ParticleDataTable, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IO_GenEvent_fill_particle_data_table" "', argument " "2"" of type '" "ParticleDataTable *""'"); + } + arg2 = reinterpret_cast< ParticleDataTable * >(argp2); + result = (bool)(arg1)->fill_particle_data_table(arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_GenEvent_write_comment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *arg1 = (HepMC::IO_GenEvent *) 0 ; + std::string arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:IO_GenEvent_write_comment",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_GenEvent_write_comment" "', argument " "1"" of type '" "HepMC::IO_GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_GenEvent * >(argp1); + { + std::string *ptr = (std::string *)0; + int res = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res) || !ptr) { + SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "IO_GenEvent_write_comment" "', argument " "2"" of type '" "std::string const""'"); + } + arg2 = *ptr; + if (SWIG_IsNewObj(res)) delete ptr; + } + (arg1)->write_comment(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_GenEvent_rdstate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *arg1 = (HepMC::IO_GenEvent *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:IO_GenEvent_rdstate",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_GenEvent_rdstate" "', argument " "1"" of type '" "HepMC::IO_GenEvent const *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_GenEvent * >(argp1); + result = (int)((HepMC::IO_GenEvent const *)arg1)->rdstate(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_GenEvent_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *arg1 = (HepMC::IO_GenEvent *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:IO_GenEvent_clear",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_GenEvent_clear" "', argument " "1"" of type '" "HepMC::IO_GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_GenEvent * >(argp1); + (arg1)->clear(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_IO_GenEvent__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string *arg1 = 0 ; + std::string *arg2 = 0 ; + HepMC::IO_GenEvent *result = 0 ; + int res1 = SWIG_OLDOBJ ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_IO_GenEvent",&obj0,&obj1)) SWIG_fail; + { + std::string *ptr = (std::string *)0; + res1 = SWIG_AsPtr_std_string(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_IO_GenEvent" "', argument " "1"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_IO_GenEvent" "', argument " "1"" of type '" "std::string const &""'"); + } + arg1 = ptr; + } + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_IO_GenEvent" "', argument " "2"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_IO_GenEvent" "', argument " "2"" of type '" "std::string const &""'"); + } + arg2 = ptr; + } + result = (HepMC::IO_GenEvent *)new_HepMC_IO_GenEvent__SWIG_5((std::string const &)*arg1,(std::string const &)*arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__IO_GenEvent, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_IO_GenEvent(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_IO_GenEvent__SWIG_2(self, args); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_std__istream, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_IO_GenEvent__SWIG_3(self, args); + } + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_std__ostream, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_IO_GenEvent__SWIG_4(self, args); + } + } + if (argc == 1) { + int _v; + int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_IO_GenEvent__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + int res = SWIG_AsPtr_std_string(argv[0], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_IO_GenEvent__SWIG_5(self, args); + } + } + } + if (argc == 2) { + int _v; + int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_std__ios__openmode, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_IO_GenEvent__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_IO_GenEvent'.\n Possible C/C++ prototypes are:\n"" HepMC::IO_GenEvent(char const *,std::ios::openmode)\n"" HepMC::IO_GenEvent(char const *)\n"" HepMC::IO_GenEvent()\n"" HepMC::IO_GenEvent(std::istream &)\n"" HepMC::IO_GenEvent(std::ostream &)\n"" HepMC::IO_GenEvent(std::string const &,std::string const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_IO_GenEvent_get_next_event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::IO_GenEvent *arg1 = (HepMC::IO_GenEvent *) 0 ; + HepMC::GenEvent result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:IO_GenEvent_get_next_event",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__IO_GenEvent, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IO_GenEvent_get_next_event" "', argument " "1"" of type '" "HepMC::IO_GenEvent *""'"); + } + arg1 = reinterpret_cast< HepMC::IO_GenEvent * >(argp1); + result = HepMC_IO_GenEvent_get_next_event(arg1); + resultobj = SWIG_NewPointerObj((new HepMC::GenEvent(static_cast< const HepMC::GenEvent& >(result))), SWIGTYPE_p_HepMC__GenEvent, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *IO_GenEvent_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_HepMC__IO_GenEvent, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_GenParticleVector_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + PyObject **arg2 = (PyObject **) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + arg2 = &obj0; + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_iterator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_iterator" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = (swig::PySwigIterator *)std_vector_Sl_HepMC_GenParticle_Sm__Sg__iterator(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector___nonzero__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector___nonzero__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector___nonzero__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = (bool)std_vector_Sl_HepMC_GenParticle_Sm__Sg____nonzero__((std::vector<HepMC::GenParticle * > const *)arg1); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector___len__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector___len__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = std_vector_Sl_HepMC_GenParticle_Sm__Sg____len__((std::vector<HepMC::GenParticle * > const *)arg1); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_pop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_pop" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + try { + result = (std::vector<HepMC::GenParticle * >::value_type)std_vector_Sl_HepMC_GenParticle_Sm__Sg__pop(arg1); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector___getslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::difference_type arg2 ; + std::vector<HepMC::GenParticle * >::difference_type arg3 ; + std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenParticleVector___getslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector___getslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector___getslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "GenParticleVector___getslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenParticle * >::difference_type >(val3); + try { + result = (std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > *)std_vector_Sl_HepMC_GenParticle_Sm__Sg____getslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector___setslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::difference_type arg2 ; + std::vector<HepMC::GenParticle * >::difference_type arg3 ; + std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > *arg4 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + int res4 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:GenParticleVector___setslice__",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector___setslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector___setslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "GenParticleVector___setslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenParticle * >::difference_type >(val3); + { + std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > > *ptr = (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > > *)0; + res4 = swig::asptr(obj3, &ptr); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "GenParticleVector___setslice__" "', argument " "4"" of type '" "std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenParticleVector___setslice__" "', argument " "4"" of type '" "std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > const &""'"); + } + arg4 = ptr; + } + try { + std_vector_Sl_HepMC_GenParticle_Sm__Sg____setslice__(arg1,arg2,arg3,(std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > const &)*arg4); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + catch(std::invalid_argument &_e) { + SWIG_exception_fail(SWIG_ValueError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res4)) delete arg4; + return resultobj; +fail: + if (SWIG_IsNewObj(res4)) delete arg4; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector___delslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::difference_type arg2 ; + std::vector<HepMC::GenParticle * >::difference_type arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenParticleVector___delslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector___delslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector___delslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "GenParticleVector___delslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenParticle * >::difference_type >(val3); + try { + std_vector_Sl_HepMC_GenParticle_Sm__Sg____delslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector___delitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::difference_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticleVector___delitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector___delitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector___delitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::difference_type >(val2); + try { + std_vector_Sl_HepMC_GenParticle_Sm__Sg____delitem__(arg1,arg2); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::difference_type arg2 ; + std::vector<HepMC::GenParticle * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticleVector___getitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector___getitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector___getitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::difference_type >(val2); + try { + result = (std::vector<HepMC::GenParticle * >::value_type)std_vector_Sl_HepMC_GenParticle_Sm__Sg____getitem__(arg1,arg2); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::difference_type arg2 ; + std::vector<HepMC::GenParticle * >::value_type arg3 = (std::vector<HepMC::GenParticle * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenParticleVector___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector___setitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector___setitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::difference_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "GenParticleVector___setitem__" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::value_type""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenParticle * >::value_type >(argp3); + try { + std_vector_Sl_HepMC_GenParticle_Sm__Sg____setitem__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::value_type arg2 = (std::vector<HepMC::GenParticle * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticleVector_append",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_append" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticleVector_append" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::value_type""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenParticle * >::value_type >(argp2); + std_vector_Sl_HepMC_GenParticle_Sm__Sg__append(arg1,arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticleVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_GenParticleVector")) SWIG_fail; + result = (std::vector<HepMC::GenParticle * > *)new std::vector<HepMC::GenParticle * >(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticleVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = 0 ; + std::vector<HepMC::GenParticle * > *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenParticleVector",&obj0)) SWIG_fail; + { + std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > > *ptr = (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > > *)0; + res1 = swig::asptr(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const &""'"); + } + arg1 = ptr; + } + result = (std::vector<HepMC::GenParticle * > *)new std::vector<HepMC::GenParticle * >((std::vector<HepMC::GenParticle * > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_empty",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_empty" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = (bool)((std::vector<HepMC::GenParticle * > const *)arg1)->empty(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_size" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = ((std::vector<HepMC::GenParticle * > const *)arg1)->size(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_clear",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_clear" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + (arg1)->clear(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * > *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticleVector_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_swap" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticleVector_swap" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * > &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenParticleVector_swap" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * > &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_get_allocator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + SwigValueWrapper< std::allocator<HepMC::GenParticle * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_get_allocator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_get_allocator" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = ((std::vector<HepMC::GenParticle * > const *)arg1)->get_allocator(); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenParticle * >::allocator_type(static_cast< const std::vector<HepMC::GenParticle * >::allocator_type& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_begin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_begin" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = (arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_begin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_begin" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = ((std::vector<HepMC::GenParticle * > const *)arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_begin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_begin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_begin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticleVector_begin'.\n Possible C/C++ prototypes are:\n"" begin(std::vector<HepMC::GenParticle * > *)\n"" begin(std::vector<HepMC::GenParticle * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_end__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_end" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = (arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_end__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_end" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = ((std::vector<HepMC::GenParticle * > const *)arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_end(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_end__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_end__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticleVector_end'.\n Possible C/C++ prototypes are:\n"" end(std::vector<HepMC::GenParticle * > *)\n"" end(std::vector<HepMC::GenParticle * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_rbegin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_rbegin" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = (arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_rbegin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_rbegin" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = ((std::vector<HepMC::GenParticle * > const *)arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_rbegin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_rbegin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_rbegin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticleVector_rbegin'.\n Possible C/C++ prototypes are:\n"" rbegin(std::vector<HepMC::GenParticle * > *)\n"" rbegin(std::vector<HepMC::GenParticle * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_rend__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_rend" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = (arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_rend__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_rend" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = ((std::vector<HepMC::GenParticle * > const *)arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_rend(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_rend__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_rend__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticleVector_rend'.\n Possible C/C++ prototypes are:\n"" rend(std::vector<HepMC::GenParticle * > *)\n"" rend(std::vector<HepMC::GenParticle * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticleVector__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * >::size_type arg1 ; + std::vector<HepMC::GenParticle * > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenParticleVector",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * >::size_type""'"); + } + arg1 = static_cast< std::vector<HepMC::GenParticle * >::size_type >(val1); + result = (std::vector<HepMC::GenParticle * > *)new std::vector<HepMC::GenParticle * >(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_pop_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_pop_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_pop_back" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + (arg1)->pop_back(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_resize__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticleVector_resize",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_resize" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector_resize" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::size_type >(val2); + (arg1)->resize(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_erase__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::iterator arg2 ; + std::vector<HepMC::GenParticle * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticleVector_erase",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_erase" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } + } + result = (arg1)->erase(arg2); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_erase__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::iterator arg2 ; + std::vector<HepMC::GenParticle * >::iterator arg3 ; + std::vector<HepMC::GenParticle * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + swig::PySwigIterator *iter3 = 0 ; + int res3 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenParticleVector_erase",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_erase" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, SWIG_as_voidptrptr(&iter3), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res3) || !iter3) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_erase" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter3); + if (iter_t) { + arg3 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_erase" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } + } + result = (arg1)->erase(arg2,arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_erase(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_GenParticleVector_erase__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter) != 0)); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_GenParticleVector_erase__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticleVector_erase'.\n Possible C/C++ prototypes are:\n"" erase(std::vector<HepMC::GenParticle * > *,std::vector<HepMC::GenParticle * >::iterator)\n"" erase(std::vector<HepMC::GenParticle * > *,std::vector<HepMC::GenParticle * >::iterator,std::vector<HepMC::GenParticle * >::iterator)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticleVector__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * >::size_type arg1 ; + std::vector<HepMC::GenParticle * >::value_type arg2 = (std::vector<HepMC::GenParticle * >::value_type) 0 ; + std::vector<HepMC::GenParticle * > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_GenParticleVector",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * >::size_type""'"); + } + arg1 = static_cast< std::vector<HepMC::GenParticle * >::size_type >(val1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_GenParticleVector" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::value_type""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenParticle * >::value_type >(argp2); + result = (std::vector<HepMC::GenParticle * > *)new std::vector<HepMC::GenParticle * >(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticleVector(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_GenParticleVector__SWIG_0(self, args); + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_GenParticleVector__SWIG_2(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenParticleVector__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenParticleVector__SWIG_3(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_GenParticleVector'.\n Possible C/C++ prototypes are:\n"" std::vector<(p.HepMC::GenParticle)>()\n"" std::vector<(p.HepMC::GenParticle)>(std::vector<HepMC::GenParticle * > const &)\n"" std::vector<(p.HepMC::GenParticle)>(std::vector<HepMC::GenParticle * >::size_type)\n"" std::vector<(p.HepMC::GenParticle)>(std::vector<HepMC::GenParticle * >::size_type,std::vector<HepMC::GenParticle * >::value_type)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_push_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::value_type arg2 = (std::vector<HepMC::GenParticle * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticleVector_push_back",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_push_back" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticleVector_push_back" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::value_type""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenParticle * >::value_type >(argp2); + (arg1)->push_back(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_front(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_front",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_front" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = (std::vector<HepMC::GenParticle * >::value_type)((std::vector<HepMC::GenParticle * > const *)arg1)->front(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_back" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = (std::vector<HepMC::GenParticle * >::value_type)((std::vector<HepMC::GenParticle * > const *)arg1)->back(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_assign(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::size_type arg2 ; + std::vector<HepMC::GenParticle * >::value_type arg3 = (std::vector<HepMC::GenParticle * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenParticleVector_assign",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_assign" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector_assign" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::size_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "GenParticleVector_assign" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::value_type""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenParticle * >::value_type >(argp3); + (arg1)->assign(arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_resize__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::size_type arg2 ; + std::vector<HepMC::GenParticle * >::value_type arg3 = (std::vector<HepMC::GenParticle * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenParticleVector_resize",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_resize" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector_resize" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::size_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "GenParticleVector_resize" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::value_type""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenParticle * >::value_type >(argp3); + (arg1)->resize(arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_resize(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_GenParticleVector_resize__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_resize__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticleVector_resize'.\n Possible C/C++ prototypes are:\n"" resize(std::vector<HepMC::GenParticle * > *,std::vector<HepMC::GenParticle * >::size_type)\n"" resize(std::vector<HepMC::GenParticle * > *,std::vector<HepMC::GenParticle * >::size_type,std::vector<HepMC::GenParticle * >::value_type)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_insert__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::iterator arg2 ; + std::vector<HepMC::GenParticle * >::value_type arg3 = (std::vector<HepMC::GenParticle * >::value_type) 0 ; + std::vector<HepMC::GenParticle * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenParticleVector_insert",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_insert" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "GenParticleVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::value_type""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenParticle * >::value_type >(argp3); + result = (arg1)->insert(arg2,arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_insert__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::iterator arg2 ; + std::vector<HepMC::GenParticle * >::size_type arg3 ; + std::vector<HepMC::GenParticle * >::value_type arg4 = (std::vector<HepMC::GenParticle * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:GenParticleVector_insert",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_insert" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenParticleVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::iterator""'"); + } + } + ecode3 = SWIG_AsVal_size_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "GenParticleVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle * >::size_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenParticle * >::size_type >(val3); + res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "GenParticleVector_insert" "', argument " "4"" of type '" "std::vector<HepMC::GenParticle * >::value_type""'"); + } + arg4 = reinterpret_cast< std::vector<HepMC::GenParticle * >::value_type >(argp4); + (arg1)->insert(arg2,arg3,arg4); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_insert(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[5]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 4); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter) != 0)); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_insert__SWIG_0(self, args); + } + } + } + } + if (argc == 4) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle*,std::allocator<HepMC::GenParticle * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle * >::iterator > *>(iter) != 0)); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenParticleVector_insert__SWIG_1(self, args); + } + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenParticleVector_insert'.\n Possible C/C++ prototypes are:\n"" insert(std::vector<HepMC::GenParticle * > *,std::vector<HepMC::GenParticle * >::iterator,std::vector<HepMC::GenParticle * >::value_type)\n"" insert(std::vector<HepMC::GenParticle * > *,std::vector<HepMC::GenParticle * >::iterator,std::vector<HepMC::GenParticle * >::size_type,std::vector<HepMC::GenParticle * >::value_type)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_reserve(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticleVector_reserve",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_reserve" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenParticleVector_reserve" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle * >::size_type >(val2); + (arg1)->reserve(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticleVector_capacity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + std::vector<HepMC::GenParticle * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticleVector_capacity",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticleVector_capacity" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + result = ((std::vector<HepMC::GenParticle * > const *)arg1)->capacity(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_GenParticleVector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle * > *arg1 = (std::vector<HepMC::GenParticle * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_GenParticleVector",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_GenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle * > * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *GenParticleVector_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_cGenParticleVector_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + PyObject **arg2 = (PyObject **) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + arg2 = &obj0; + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_iterator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_iterator" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = (swig::PySwigIterator *)std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg__iterator(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector___nonzero__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector___nonzero__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector___nonzero__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = (bool)std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____nonzero__((std::vector<HepMC::GenParticle const * > const *)arg1); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector___len__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector___len__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____len__((std::vector<HepMC::GenParticle const * > const *)arg1); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_pop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_pop" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + try { + result = (std::vector<HepMC::GenParticle const * >::value_type)std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg__pop(arg1); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector___getslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::difference_type arg2 ; + std::vector<HepMC::GenParticle const * >::difference_type arg3 ; + std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenParticleVector___getslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector___getslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector___getslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cGenParticleVector___getslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenParticle const * >::difference_type >(val3); + try { + result = (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > *)std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____getslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector___setslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::difference_type arg2 ; + std::vector<HepMC::GenParticle const * >::difference_type arg3 ; + std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > *arg4 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + int res4 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:cGenParticleVector___setslice__",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector___setslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector___setslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cGenParticleVector___setslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenParticle const * >::difference_type >(val3); + { + std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > *ptr = (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > *)0; + res4 = swig::asptr(obj3, &ptr); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cGenParticleVector___setslice__" "', argument " "4"" of type '" "std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenParticleVector___setslice__" "', argument " "4"" of type '" "std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > const &""'"); + } + arg4 = ptr; + } + try { + std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____setslice__(arg1,arg2,arg3,(std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > const &)*arg4); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + catch(std::invalid_argument &_e) { + SWIG_exception_fail(SWIG_ValueError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res4)) delete arg4; + return resultobj; +fail: + if (SWIG_IsNewObj(res4)) delete arg4; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector___delslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::difference_type arg2 ; + std::vector<HepMC::GenParticle const * >::difference_type arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenParticleVector___delslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector___delslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector___delslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cGenParticleVector___delslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenParticle const * >::difference_type >(val3); + try { + std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____delslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector___delitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::difference_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticleVector___delitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector___delitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector___delitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::difference_type >(val2); + try { + std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____delitem__(arg1,arg2); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::difference_type arg2 ; + std::vector<HepMC::GenParticle const * >::value_type *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticleVector___getitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector___getitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector___getitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::difference_type >(val2); + try { + { + std::vector<HepMC::GenParticle const * >::value_type const &_result_ref = std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____getitem__((std::vector<HepMC::GenParticle const * > const *)arg1,arg2); + result = (std::vector<HepMC::GenParticle const * >::value_type *) &_result_ref; + } + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::difference_type arg2 ; + std::vector<HepMC::GenParticle const * >::value_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenParticleVector___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector___setitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector___setitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::difference_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cGenParticleVector___setitem__" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenParticleVector___setitem__" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenParticle const * >::value_type * >(argp3); + try { + std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg____setitem__(arg1,arg2,(HepMC::GenParticle const *const &)*arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::value_type *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticleVector_append",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_append" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cGenParticleVector_append" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenParticleVector_append" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenParticle const * >::value_type * >(argp2); + std_vector_Sl_HepMC_GenParticle_SS_const_Sm__Sg__append(arg1,(HepMC::GenParticle const *const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenParticleVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_cGenParticleVector")) SWIG_fail; + result = (std::vector<HepMC::GenParticle const * > *)new std::vector<HepMC::GenParticle const * >(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenParticleVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = 0 ; + std::vector<HepMC::GenParticle const * > *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_cGenParticleVector",&obj0)) SWIG_fail; + { + std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > *ptr = (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > *)0; + res1 = swig::asptr(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_cGenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_cGenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const &""'"); + } + arg1 = ptr; + } + result = (std::vector<HepMC::GenParticle const * > *)new std::vector<HepMC::GenParticle const * >((std::vector<HepMC::GenParticle const * > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_empty",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_empty" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = (bool)((std::vector<HepMC::GenParticle const * > const *)arg1)->empty(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_size" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = ((std::vector<HepMC::GenParticle const * > const *)arg1)->size(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_clear",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_clear" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + (arg1)->clear(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * > *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticleVector_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_swap" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cGenParticleVector_swap" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * > &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenParticleVector_swap" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * > &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_get_allocator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + SwigValueWrapper< std::allocator<HepMC::GenParticle const * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_get_allocator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_get_allocator" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = ((std::vector<HepMC::GenParticle const * > const *)arg1)->get_allocator(); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenParticle const * >::allocator_type(static_cast< const std::vector<HepMC::GenParticle const * >::allocator_type& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_begin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_begin" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = (arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_begin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_begin" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = ((std::vector<HepMC::GenParticle const * > const *)arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_begin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_begin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_begin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenParticleVector_begin'.\n Possible C/C++ prototypes are:\n"" begin(std::vector<HepMC::GenParticle const * > *)\n"" begin(std::vector<HepMC::GenParticle const * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_end__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_end" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = (arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_end__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_end" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = ((std::vector<HepMC::GenParticle const * > const *)arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_end(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_end__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_end__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenParticleVector_end'.\n Possible C/C++ prototypes are:\n"" end(std::vector<HepMC::GenParticle const * > *)\n"" end(std::vector<HepMC::GenParticle const * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_rbegin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_rbegin" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = (arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_rbegin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_rbegin" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = ((std::vector<HepMC::GenParticle const * > const *)arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_rbegin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_rbegin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_rbegin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenParticleVector_rbegin'.\n Possible C/C++ prototypes are:\n"" rbegin(std::vector<HepMC::GenParticle const * > *)\n"" rbegin(std::vector<HepMC::GenParticle const * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_rend__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_rend" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = (arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_rend__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_rend" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = ((std::vector<HepMC::GenParticle const * > const *)arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_rend(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_rend__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_rend__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenParticleVector_rend'.\n Possible C/C++ prototypes are:\n"" rend(std::vector<HepMC::GenParticle const * > *)\n"" rend(std::vector<HepMC::GenParticle const * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenParticleVector__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * >::size_type arg1 ; + std::vector<HepMC::GenParticle const * > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_cGenParticleVector",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_cGenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * >::size_type""'"); + } + arg1 = static_cast< std::vector<HepMC::GenParticle const * >::size_type >(val1); + result = (std::vector<HepMC::GenParticle const * > *)new std::vector<HepMC::GenParticle const * >(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_pop_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_pop_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_pop_back" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + (arg1)->pop_back(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_resize__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticleVector_resize",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_resize" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector_resize" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::size_type >(val2); + (arg1)->resize(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_erase__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::iterator arg2 ; + std::vector<HepMC::GenParticle const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticleVector_erase",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_erase" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } + } + result = (arg1)->erase(arg2); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_erase__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::iterator arg2 ; + std::vector<HepMC::GenParticle const * >::iterator arg3 ; + std::vector<HepMC::GenParticle const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + swig::PySwigIterator *iter3 = 0 ; + int res3 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenParticleVector_erase",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_erase" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, SWIG_as_voidptrptr(&iter3), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res3) || !iter3) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_erase" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter3); + if (iter_t) { + arg3 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_erase" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } + } + result = (arg1)->erase(arg2,arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_erase(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_cGenParticleVector_erase__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter) != 0)); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_cGenParticleVector_erase__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenParticleVector_erase'.\n Possible C/C++ prototypes are:\n"" erase(std::vector<HepMC::GenParticle const * > *,std::vector<HepMC::GenParticle const * >::iterator)\n"" erase(std::vector<HepMC::GenParticle const * > *,std::vector<HepMC::GenParticle const * >::iterator,std::vector<HepMC::GenParticle const * >::iterator)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenParticleVector__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * >::size_type arg1 ; + std::vector<HepMC::GenParticle const * >::value_type *arg2 = 0 ; + std::vector<HepMC::GenParticle const * > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_cGenParticleVector",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_cGenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * >::size_type""'"); + } + arg1 = static_cast< std::vector<HepMC::GenParticle const * >::size_type >(val1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_cGenParticleVector" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_cGenParticleVector" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenParticle const * >::value_type * >(argp2); + result = (std::vector<HepMC::GenParticle const * > *)new std::vector<HepMC::GenParticle const * >(arg1,(std::vector<HepMC::GenParticle const * >::value_type const &)*arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenParticleVector(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_cGenParticleVector__SWIG_0(self, args); + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_cGenParticleVector__SWIG_2(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_cGenParticleVector__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_cGenParticleVector__SWIG_3(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_cGenParticleVector'.\n Possible C/C++ prototypes are:\n"" std::vector<(p.q(const).HepMC::GenParticle)>()\n"" std::vector<(p.q(const).HepMC::GenParticle)>(std::vector<HepMC::GenParticle const * > const &)\n"" std::vector<(p.q(const).HepMC::GenParticle)>(std::vector<HepMC::GenParticle const * >::size_type)\n"" std::vector<(p.q(const).HepMC::GenParticle)>(std::vector<HepMC::GenParticle const * >::size_type,std::vector<HepMC::GenParticle const * >::value_type const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_push_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::value_type *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticleVector_push_back",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_push_back" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cGenParticleVector_push_back" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenParticleVector_push_back" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenParticle const * >::value_type * >(argp2); + (arg1)->push_back((std::vector<HepMC::GenParticle const * >::value_type const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_front(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::value_type *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_front",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_front" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + { + std::vector<HepMC::GenParticle const * >::value_type const &_result_ref = ((std::vector<HepMC::GenParticle const * > const *)arg1)->front(); + result = (std::vector<HepMC::GenParticle const * >::value_type *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::value_type *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_back" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + { + std::vector<HepMC::GenParticle const * >::value_type const &_result_ref = ((std::vector<HepMC::GenParticle const * > const *)arg1)->back(); + result = (std::vector<HepMC::GenParticle const * >::value_type *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_assign(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::size_type arg2 ; + std::vector<HepMC::GenParticle const * >::value_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenParticleVector_assign",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_assign" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector_assign" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::size_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cGenParticleVector_assign" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenParticleVector_assign" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenParticle const * >::value_type * >(argp3); + (arg1)->assign(arg2,(std::vector<HepMC::GenParticle const * >::value_type const &)*arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_resize__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::size_type arg2 ; + std::vector<HepMC::GenParticle const * >::value_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenParticleVector_resize",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_resize" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector_resize" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::size_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cGenParticleVector_resize" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenParticleVector_resize" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenParticle const * >::value_type * >(argp3); + (arg1)->resize(arg2,(std::vector<HepMC::GenParticle const * >::value_type const &)*arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_resize(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_cGenParticleVector_resize__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_resize__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenParticleVector_resize'.\n Possible C/C++ prototypes are:\n"" resize(std::vector<HepMC::GenParticle const * > *,std::vector<HepMC::GenParticle const * >::size_type)\n"" resize(std::vector<HepMC::GenParticle const * > *,std::vector<HepMC::GenParticle const * >::size_type,std::vector<HepMC::GenParticle const * >::value_type const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_insert__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::iterator arg2 ; + std::vector<HepMC::GenParticle const * >::value_type *arg3 = 0 ; + std::vector<HepMC::GenParticle const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenParticleVector_insert",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_insert" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cGenParticleVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenParticleVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenParticle const * >::value_type * >(argp3); + result = (arg1)->insert(arg2,(std::vector<HepMC::GenParticle const * >::value_type const &)*arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenParticle const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_insert__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::iterator arg2 ; + std::vector<HepMC::GenParticle const * >::size_type arg3 ; + std::vector<HepMC::GenParticle const * >::value_type *arg4 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:cGenParticleVector_insert",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_insert" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenParticleVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::iterator""'"); + } + } + ecode3 = SWIG_AsVal_size_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cGenParticleVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenParticle const * >::size_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenParticle const * >::size_type >(val3); + res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cGenParticleVector_insert" "', argument " "4"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + if (!argp4) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenParticleVector_insert" "', argument " "4"" of type '" "std::vector<HepMC::GenParticle const * >::value_type const &""'"); + } + arg4 = reinterpret_cast< std::vector<HepMC::GenParticle const * >::value_type * >(argp4); + (arg1)->insert(arg2,arg3,(std::vector<HepMC::GenParticle const * >::value_type const &)*arg4); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_insert(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[5]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 4); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter) != 0)); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_insert__SWIG_0(self, args); + } + } + } + } + if (argc == 4) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenParticle const * >::iterator > *>(iter) != 0)); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenParticleVector_insert__SWIG_1(self, args); + } + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenParticleVector_insert'.\n Possible C/C++ prototypes are:\n"" insert(std::vector<HepMC::GenParticle const * > *,std::vector<HepMC::GenParticle const * >::iterator,std::vector<HepMC::GenParticle const * >::value_type const &)\n"" insert(std::vector<HepMC::GenParticle const * > *,std::vector<HepMC::GenParticle const * >::iterator,std::vector<HepMC::GenParticle const * >::size_type,std::vector<HepMC::GenParticle const * >::value_type const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_reserve(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticleVector_reserve",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_reserve" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenParticleVector_reserve" "', argument " "2"" of type '" "std::vector<HepMC::GenParticle const * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenParticle const * >::size_type >(val2); + (arg1)->reserve(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticleVector_capacity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + std::vector<HepMC::GenParticle const * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticleVector_capacity",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticleVector_capacity" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + result = ((std::vector<HepMC::GenParticle const * > const *)arg1)->capacity(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_cGenParticleVector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenParticle const * > *arg1 = (std::vector<HepMC::GenParticle const * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_cGenParticleVector",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_cGenParticleVector" "', argument " "1"" of type '" "std::vector<HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenParticle const * > * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *cGenParticleVector_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_GenVertexVector_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + PyObject **arg2 = (PyObject **) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + arg2 = &obj0; + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_iterator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_iterator" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = (swig::PySwigIterator *)std_vector_Sl_HepMC_GenVertex_Sm__Sg__iterator(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector___nonzero__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector___nonzero__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector___nonzero__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = (bool)std_vector_Sl_HepMC_GenVertex_Sm__Sg____nonzero__((std::vector<HepMC::GenVertex * > const *)arg1); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector___len__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector___len__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = std_vector_Sl_HepMC_GenVertex_Sm__Sg____len__((std::vector<HepMC::GenVertex * > const *)arg1); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_pop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_pop" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + try { + result = (std::vector<HepMC::GenVertex * >::value_type)std_vector_Sl_HepMC_GenVertex_Sm__Sg__pop(arg1); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector___getslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::difference_type arg2 ; + std::vector<HepMC::GenVertex * >::difference_type arg3 ; + std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenVertexVector___getslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector___getslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector___getslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "GenVertexVector___getslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenVertex * >::difference_type >(val3); + try { + result = (std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > *)std_vector_Sl_HepMC_GenVertex_Sm__Sg____getslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector___setslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::difference_type arg2 ; + std::vector<HepMC::GenVertex * >::difference_type arg3 ; + std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > *arg4 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + int res4 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:GenVertexVector___setslice__",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector___setslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector___setslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "GenVertexVector___setslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenVertex * >::difference_type >(val3); + { + std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > > *ptr = (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > > *)0; + res4 = swig::asptr(obj3, &ptr); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "GenVertexVector___setslice__" "', argument " "4"" of type '" "std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenVertexVector___setslice__" "', argument " "4"" of type '" "std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > const &""'"); + } + arg4 = ptr; + } + try { + std_vector_Sl_HepMC_GenVertex_Sm__Sg____setslice__(arg1,arg2,arg3,(std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > const &)*arg4); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + catch(std::invalid_argument &_e) { + SWIG_exception_fail(SWIG_ValueError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res4)) delete arg4; + return resultobj; +fail: + if (SWIG_IsNewObj(res4)) delete arg4; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector___delslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::difference_type arg2 ; + std::vector<HepMC::GenVertex * >::difference_type arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenVertexVector___delslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector___delslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector___delslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "GenVertexVector___delslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenVertex * >::difference_type >(val3); + try { + std_vector_Sl_HepMC_GenVertex_Sm__Sg____delslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector___delitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::difference_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertexVector___delitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector___delitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector___delitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::difference_type >(val2); + try { + std_vector_Sl_HepMC_GenVertex_Sm__Sg____delitem__(arg1,arg2); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::difference_type arg2 ; + std::vector<HepMC::GenVertex * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertexVector___getitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector___getitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector___getitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::difference_type >(val2); + try { + result = (std::vector<HepMC::GenVertex * >::value_type)std_vector_Sl_HepMC_GenVertex_Sm__Sg____getitem__(arg1,arg2); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::difference_type arg2 ; + std::vector<HepMC::GenVertex * >::value_type arg3 = (std::vector<HepMC::GenVertex * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenVertexVector___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector___setitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector___setitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::difference_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "GenVertexVector___setitem__" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::value_type""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenVertex * >::value_type >(argp3); + try { + std_vector_Sl_HepMC_GenVertex_Sm__Sg____setitem__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::value_type arg2 = (std::vector<HepMC::GenVertex * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertexVector_append",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_append" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertexVector_append" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::value_type""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenVertex * >::value_type >(argp2); + std_vector_Sl_HepMC_GenVertex_Sm__Sg__append(arg1,arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertexVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_GenVertexVector")) SWIG_fail; + result = (std::vector<HepMC::GenVertex * > *)new std::vector<HepMC::GenVertex * >(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertexVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = 0 ; + std::vector<HepMC::GenVertex * > *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenVertexVector",&obj0)) SWIG_fail; + { + std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > > *ptr = (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > > *)0; + res1 = swig::asptr(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_GenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const &""'"); + } + arg1 = ptr; + } + result = (std::vector<HepMC::GenVertex * > *)new std::vector<HepMC::GenVertex * >((std::vector<HepMC::GenVertex * > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_empty",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_empty" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = (bool)((std::vector<HepMC::GenVertex * > const *)arg1)->empty(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_size" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = ((std::vector<HepMC::GenVertex * > const *)arg1)->size(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_clear",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_clear" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + (arg1)->clear(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * > *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertexVector_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_swap" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertexVector_swap" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * > &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GenVertexVector_swap" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * > &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_get_allocator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + SwigValueWrapper< std::allocator<HepMC::GenVertex * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_get_allocator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_get_allocator" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = ((std::vector<HepMC::GenVertex * > const *)arg1)->get_allocator(); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenVertex * >::allocator_type(static_cast< const std::vector<HepMC::GenVertex * >::allocator_type& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_begin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_begin" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = (arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_begin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_begin" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = ((std::vector<HepMC::GenVertex * > const *)arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_begin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_begin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_begin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertexVector_begin'.\n Possible C/C++ prototypes are:\n"" begin(std::vector<HepMC::GenVertex * > *)\n"" begin(std::vector<HepMC::GenVertex * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_end__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_end" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = (arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_end__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_end" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = ((std::vector<HepMC::GenVertex * > const *)arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_end(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_end__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_end__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertexVector_end'.\n Possible C/C++ prototypes are:\n"" end(std::vector<HepMC::GenVertex * > *)\n"" end(std::vector<HepMC::GenVertex * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_rbegin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_rbegin" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = (arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_rbegin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_rbegin" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = ((std::vector<HepMC::GenVertex * > const *)arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_rbegin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_rbegin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_rbegin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertexVector_rbegin'.\n Possible C/C++ prototypes are:\n"" rbegin(std::vector<HepMC::GenVertex * > *)\n"" rbegin(std::vector<HepMC::GenVertex * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_rend__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_rend" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = (arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_rend__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_rend" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = ((std::vector<HepMC::GenVertex * > const *)arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_rend(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_rend__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_rend__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertexVector_rend'.\n Possible C/C++ prototypes are:\n"" rend(std::vector<HepMC::GenVertex * > *)\n"" rend(std::vector<HepMC::GenVertex * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertexVector__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * >::size_type arg1 ; + std::vector<HepMC::GenVertex * > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenVertexVector",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * >::size_type""'"); + } + arg1 = static_cast< std::vector<HepMC::GenVertex * >::size_type >(val1); + result = (std::vector<HepMC::GenVertex * > *)new std::vector<HepMC::GenVertex * >(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_pop_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_pop_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_pop_back" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + (arg1)->pop_back(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_resize__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertexVector_resize",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_resize" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector_resize" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::size_type >(val2); + (arg1)->resize(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_erase__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::iterator arg2 ; + std::vector<HepMC::GenVertex * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertexVector_erase",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_erase" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } + } + result = (arg1)->erase(arg2); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_erase__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::iterator arg2 ; + std::vector<HepMC::GenVertex * >::iterator arg3 ; + std::vector<HepMC::GenVertex * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + swig::PySwigIterator *iter3 = 0 ; + int res3 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenVertexVector_erase",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_erase" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, SWIG_as_voidptrptr(&iter3), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res3) || !iter3) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_erase" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter3); + if (iter_t) { + arg3 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_erase" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } + } + result = (arg1)->erase(arg2,arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_erase(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_GenVertexVector_erase__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter) != 0)); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_GenVertexVector_erase__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertexVector_erase'.\n Possible C/C++ prototypes are:\n"" erase(std::vector<HepMC::GenVertex * > *,std::vector<HepMC::GenVertex * >::iterator)\n"" erase(std::vector<HepMC::GenVertex * > *,std::vector<HepMC::GenVertex * >::iterator,std::vector<HepMC::GenVertex * >::iterator)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertexVector__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * >::size_type arg1 ; + std::vector<HepMC::GenVertex * >::value_type arg2 = (std::vector<HepMC::GenVertex * >::value_type) 0 ; + std::vector<HepMC::GenVertex * > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_GenVertexVector",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * >::size_type""'"); + } + arg1 = static_cast< std::vector<HepMC::GenVertex * >::size_type >(val1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_GenVertexVector" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::value_type""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenVertex * >::value_type >(argp2); + result = (std::vector<HepMC::GenVertex * > *)new std::vector<HepMC::GenVertex * >(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenVertexVector(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_GenVertexVector__SWIG_0(self, args); + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_GenVertexVector__SWIG_2(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenVertexVector__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenVertexVector__SWIG_3(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_GenVertexVector'.\n Possible C/C++ prototypes are:\n"" std::vector<(p.HepMC::GenVertex)>()\n"" std::vector<(p.HepMC::GenVertex)>(std::vector<HepMC::GenVertex * > const &)\n"" std::vector<(p.HepMC::GenVertex)>(std::vector<HepMC::GenVertex * >::size_type)\n"" std::vector<(p.HepMC::GenVertex)>(std::vector<HepMC::GenVertex * >::size_type,std::vector<HepMC::GenVertex * >::value_type)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_push_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::value_type arg2 = (std::vector<HepMC::GenVertex * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertexVector_push_back",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_push_back" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenVertexVector_push_back" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::value_type""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenVertex * >::value_type >(argp2); + (arg1)->push_back(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_front(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_front",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_front" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = (std::vector<HepMC::GenVertex * >::value_type)((std::vector<HepMC::GenVertex * > const *)arg1)->front(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_back" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = (std::vector<HepMC::GenVertex * >::value_type)((std::vector<HepMC::GenVertex * > const *)arg1)->back(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_assign(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::size_type arg2 ; + std::vector<HepMC::GenVertex * >::value_type arg3 = (std::vector<HepMC::GenVertex * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenVertexVector_assign",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_assign" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector_assign" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::size_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "GenVertexVector_assign" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::value_type""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenVertex * >::value_type >(argp3); + (arg1)->assign(arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_resize__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::size_type arg2 ; + std::vector<HepMC::GenVertex * >::value_type arg3 = (std::vector<HepMC::GenVertex * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenVertexVector_resize",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_resize" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector_resize" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::size_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "GenVertexVector_resize" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::value_type""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenVertex * >::value_type >(argp3); + (arg1)->resize(arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_resize(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_GenVertexVector_resize__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_resize__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertexVector_resize'.\n Possible C/C++ prototypes are:\n"" resize(std::vector<HepMC::GenVertex * > *,std::vector<HepMC::GenVertex * >::size_type)\n"" resize(std::vector<HepMC::GenVertex * > *,std::vector<HepMC::GenVertex * >::size_type,std::vector<HepMC::GenVertex * >::value_type)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_insert__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::iterator arg2 ; + std::vector<HepMC::GenVertex * >::value_type arg3 = (std::vector<HepMC::GenVertex * >::value_type) 0 ; + std::vector<HepMC::GenVertex * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:GenVertexVector_insert",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_insert" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "GenVertexVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::value_type""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenVertex * >::value_type >(argp3); + result = (arg1)->insert(arg2,arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_insert__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::iterator arg2 ; + std::vector<HepMC::GenVertex * >::size_type arg3 ; + std::vector<HepMC::GenVertex * >::value_type arg4 = (std::vector<HepMC::GenVertex * >::value_type) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:GenVertexVector_insert",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_insert" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "GenVertexVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::iterator""'"); + } + } + ecode3 = SWIG_AsVal_size_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "GenVertexVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex * >::size_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenVertex * >::size_type >(val3); + res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0 | 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "GenVertexVector_insert" "', argument " "4"" of type '" "std::vector<HepMC::GenVertex * >::value_type""'"); + } + arg4 = reinterpret_cast< std::vector<HepMC::GenVertex * >::value_type >(argp4); + (arg1)->insert(arg2,arg3,arg4); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_insert(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[5]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 4); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter) != 0)); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_insert__SWIG_0(self, args); + } + } + } + } + if (argc == 4) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex*,std::allocator<HepMC::GenVertex * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex * >::iterator > *>(iter) != 0)); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_GenVertexVector_insert__SWIG_1(self, args); + } + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'GenVertexVector_insert'.\n Possible C/C++ prototypes are:\n"" insert(std::vector<HepMC::GenVertex * > *,std::vector<HepMC::GenVertex * >::iterator,std::vector<HepMC::GenVertex * >::value_type)\n"" insert(std::vector<HepMC::GenVertex * > *,std::vector<HepMC::GenVertex * >::iterator,std::vector<HepMC::GenVertex * >::size_type,std::vector<HepMC::GenVertex * >::value_type)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_reserve(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenVertexVector_reserve",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_reserve" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GenVertexVector_reserve" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex * >::size_type >(val2); + (arg1)->reserve(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenVertexVector_capacity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + std::vector<HepMC::GenVertex * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenVertexVector_capacity",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenVertexVector_capacity" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + result = ((std::vector<HepMC::GenVertex * > const *)arg1)->capacity(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_GenVertexVector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex * > *arg1 = (std::vector<HepMC::GenVertex * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_GenVertexVector",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_GenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex * > * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *GenVertexVector_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_cGenVertexVector_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + PyObject **arg2 = (PyObject **) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + arg2 = &obj0; + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_iterator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_iterator" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = (swig::PySwigIterator *)std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg__iterator(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector___nonzero__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector___nonzero__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector___nonzero__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = (bool)std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____nonzero__((std::vector<HepMC::GenVertex const * > const *)arg1); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector___len__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector___len__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____len__((std::vector<HepMC::GenVertex const * > const *)arg1); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_pop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_pop" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + try { + result = (std::vector<HepMC::GenVertex const * >::value_type)std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg__pop(arg1); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector___getslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::difference_type arg2 ; + std::vector<HepMC::GenVertex const * >::difference_type arg3 ; + std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenVertexVector___getslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector___getslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector___getslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cGenVertexVector___getslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenVertex const * >::difference_type >(val3); + try { + result = (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > *)std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____getslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector___setslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::difference_type arg2 ; + std::vector<HepMC::GenVertex const * >::difference_type arg3 ; + std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > *arg4 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + int res4 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:cGenVertexVector___setslice__",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector___setslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector___setslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cGenVertexVector___setslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenVertex const * >::difference_type >(val3); + { + std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > *ptr = (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > *)0; + res4 = swig::asptr(obj3, &ptr); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cGenVertexVector___setslice__" "', argument " "4"" of type '" "std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenVertexVector___setslice__" "', argument " "4"" of type '" "std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > const &""'"); + } + arg4 = ptr; + } + try { + std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____setslice__(arg1,arg2,arg3,(std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > const &)*arg4); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + catch(std::invalid_argument &_e) { + SWIG_exception_fail(SWIG_ValueError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res4)) delete arg4; + return resultobj; +fail: + if (SWIG_IsNewObj(res4)) delete arg4; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector___delslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::difference_type arg2 ; + std::vector<HepMC::GenVertex const * >::difference_type arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenVertexVector___delslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector___delslice__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector___delslice__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cGenVertexVector___delslice__" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::difference_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenVertex const * >::difference_type >(val3); + try { + std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____delslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector___delitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::difference_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenVertexVector___delitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector___delitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector___delitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::difference_type >(val2); + try { + std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____delitem__(arg1,arg2); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::difference_type arg2 ; + std::vector<HepMC::GenVertex const * >::value_type *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenVertexVector___getitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector___getitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector___getitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::difference_type >(val2); + try { + { + std::vector<HepMC::GenVertex const * >::value_type const &_result_ref = std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____getitem__((std::vector<HepMC::GenVertex const * > const *)arg1,arg2); + result = (std::vector<HepMC::GenVertex const * >::value_type *) &_result_ref; + } + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::difference_type arg2 ; + std::vector<HepMC::GenVertex const * >::value_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenVertexVector___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector___setitem__" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector___setitem__" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::difference_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::difference_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cGenVertexVector___setitem__" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenVertexVector___setitem__" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenVertex const * >::value_type * >(argp3); + try { + std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg____setitem__(arg1,arg2,(HepMC::GenVertex const *const &)*arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::value_type *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenVertexVector_append",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_append" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cGenVertexVector_append" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenVertexVector_append" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenVertex const * >::value_type * >(argp2); + std_vector_Sl_HepMC_GenVertex_SS_const_Sm__Sg__append(arg1,(HepMC::GenVertex const *const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenVertexVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_cGenVertexVector")) SWIG_fail; + result = (std::vector<HepMC::GenVertex const * > *)new std::vector<HepMC::GenVertex const * >(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenVertexVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = 0 ; + std::vector<HepMC::GenVertex const * > *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_cGenVertexVector",&obj0)) SWIG_fail; + { + std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > *ptr = (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > *)0; + res1 = swig::asptr(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_cGenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_cGenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const &""'"); + } + arg1 = ptr; + } + result = (std::vector<HepMC::GenVertex const * > *)new std::vector<HepMC::GenVertex const * >((std::vector<HepMC::GenVertex const * > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_empty",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_empty" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = (bool)((std::vector<HepMC::GenVertex const * > const *)arg1)->empty(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_size" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = ((std::vector<HepMC::GenVertex const * > const *)arg1)->size(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_clear",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_clear" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + (arg1)->clear(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * > *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenVertexVector_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_swap" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cGenVertexVector_swap" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * > &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenVertexVector_swap" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * > &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_get_allocator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + SwigValueWrapper< std::allocator<HepMC::GenVertex const * > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_get_allocator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_get_allocator" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = ((std::vector<HepMC::GenVertex const * > const *)arg1)->get_allocator(); + resultobj = SWIG_NewPointerObj((new std::vector<HepMC::GenVertex const * >::allocator_type(static_cast< const std::vector<HepMC::GenVertex const * >::allocator_type& >(result))), SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_begin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_begin" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = (arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_begin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_begin" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = ((std::vector<HepMC::GenVertex const * > const *)arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_begin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_begin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_begin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenVertexVector_begin'.\n Possible C/C++ prototypes are:\n"" begin(std::vector<HepMC::GenVertex const * > *)\n"" begin(std::vector<HepMC::GenVertex const * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_end__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_end" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = (arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_end__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_end" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = ((std::vector<HepMC::GenVertex const * > const *)arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_end(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_end__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_end__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenVertexVector_end'.\n Possible C/C++ prototypes are:\n"" end(std::vector<HepMC::GenVertex const * > *)\n"" end(std::vector<HepMC::GenVertex const * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_rbegin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_rbegin" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = (arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_rbegin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_rbegin" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = ((std::vector<HepMC::GenVertex const * > const *)arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_rbegin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_rbegin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_rbegin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenVertexVector_rbegin'.\n Possible C/C++ prototypes are:\n"" rbegin(std::vector<HepMC::GenVertex const * > *)\n"" rbegin(std::vector<HepMC::GenVertex const * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_rend__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_rend" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = (arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_rend__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_rend" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = ((std::vector<HepMC::GenVertex const * > const *)arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_rend(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_rend__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_rend__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenVertexVector_rend'.\n Possible C/C++ prototypes are:\n"" rend(std::vector<HepMC::GenVertex const * > *)\n"" rend(std::vector<HepMC::GenVertex const * > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenVertexVector__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * >::size_type arg1 ; + std::vector<HepMC::GenVertex const * > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_cGenVertexVector",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_cGenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * >::size_type""'"); + } + arg1 = static_cast< std::vector<HepMC::GenVertex const * >::size_type >(val1); + result = (std::vector<HepMC::GenVertex const * > *)new std::vector<HepMC::GenVertex const * >(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_pop_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_pop_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_pop_back" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + (arg1)->pop_back(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_resize__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenVertexVector_resize",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_resize" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector_resize" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::size_type >(val2); + (arg1)->resize(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_erase__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::iterator arg2 ; + std::vector<HepMC::GenVertex const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenVertexVector_erase",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_erase" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } + } + result = (arg1)->erase(arg2); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_erase__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::iterator arg2 ; + std::vector<HepMC::GenVertex const * >::iterator arg3 ; + std::vector<HepMC::GenVertex const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + swig::PySwigIterator *iter3 = 0 ; + int res3 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenVertexVector_erase",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_erase" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_erase" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, SWIG_as_voidptrptr(&iter3), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res3) || !iter3) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_erase" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter3); + if (iter_t) { + arg3 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_erase" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } + } + result = (arg1)->erase(arg2,arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_erase(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_cGenVertexVector_erase__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter) != 0)); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_cGenVertexVector_erase__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenVertexVector_erase'.\n Possible C/C++ prototypes are:\n"" erase(std::vector<HepMC::GenVertex const * > *,std::vector<HepMC::GenVertex const * >::iterator)\n"" erase(std::vector<HepMC::GenVertex const * > *,std::vector<HepMC::GenVertex const * >::iterator,std::vector<HepMC::GenVertex const * >::iterator)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenVertexVector__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * >::size_type arg1 ; + std::vector<HepMC::GenVertex const * >::value_type *arg2 = 0 ; + std::vector<HepMC::GenVertex const * > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_cGenVertexVector",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_cGenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * >::size_type""'"); + } + arg1 = static_cast< std::vector<HepMC::GenVertex const * >::size_type >(val1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_cGenVertexVector" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_cGenVertexVector" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenVertex const * >::value_type * >(argp2); + result = (std::vector<HepMC::GenVertex const * > *)new std::vector<HepMC::GenVertex const * >(arg1,(std::vector<HepMC::GenVertex const * >::value_type const &)*arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenVertexVector(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_cGenVertexVector__SWIG_0(self, args); + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_cGenVertexVector__SWIG_2(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_cGenVertexVector__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_cGenVertexVector__SWIG_3(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_cGenVertexVector'.\n Possible C/C++ prototypes are:\n"" std::vector<(p.q(const).HepMC::GenVertex)>()\n"" std::vector<(p.q(const).HepMC::GenVertex)>(std::vector<HepMC::GenVertex const * > const &)\n"" std::vector<(p.q(const).HepMC::GenVertex)>(std::vector<HepMC::GenVertex const * >::size_type)\n"" std::vector<(p.q(const).HepMC::GenVertex)>(std::vector<HepMC::GenVertex const * >::size_type,std::vector<HepMC::GenVertex const * >::value_type const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_push_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::value_type *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenVertexVector_push_back",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_push_back" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cGenVertexVector_push_back" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenVertexVector_push_back" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + arg2 = reinterpret_cast< std::vector<HepMC::GenVertex const * >::value_type * >(argp2); + (arg1)->push_back((std::vector<HepMC::GenVertex const * >::value_type const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_front(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::value_type *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_front",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_front" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + { + std::vector<HepMC::GenVertex const * >::value_type const &_result_ref = ((std::vector<HepMC::GenVertex const * > const *)arg1)->front(); + result = (std::vector<HepMC::GenVertex const * >::value_type *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::value_type *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_back" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + { + std::vector<HepMC::GenVertex const * >::value_type const &_result_ref = ((std::vector<HepMC::GenVertex const * > const *)arg1)->back(); + result = (std::vector<HepMC::GenVertex const * >::value_type *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_assign(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::size_type arg2 ; + std::vector<HepMC::GenVertex const * >::value_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenVertexVector_assign",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_assign" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector_assign" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::size_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cGenVertexVector_assign" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenVertexVector_assign" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenVertex const * >::value_type * >(argp3); + (arg1)->assign(arg2,(std::vector<HepMC::GenVertex const * >::value_type const &)*arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_resize__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::size_type arg2 ; + std::vector<HepMC::GenVertex const * >::value_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenVertexVector_resize",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_resize" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector_resize" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::size_type >(val2); + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cGenVertexVector_resize" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenVertexVector_resize" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenVertex const * >::value_type * >(argp3); + (arg1)->resize(arg2,(std::vector<HepMC::GenVertex const * >::value_type const &)*arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_resize(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_cGenVertexVector_resize__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_resize__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenVertexVector_resize'.\n Possible C/C++ prototypes are:\n"" resize(std::vector<HepMC::GenVertex const * > *,std::vector<HepMC::GenVertex const * >::size_type)\n"" resize(std::vector<HepMC::GenVertex const * > *,std::vector<HepMC::GenVertex const * >::size_type,std::vector<HepMC::GenVertex const * >::value_type const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_insert__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::iterator arg2 ; + std::vector<HepMC::GenVertex const * >::value_type *arg3 = 0 ; + std::vector<HepMC::GenVertex const * >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + void *argp3 = 0 ; + int res3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:cGenVertexVector_insert",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_insert" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cGenVertexVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + if (!argp3) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenVertexVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + arg3 = reinterpret_cast< std::vector<HepMC::GenVertex const * >::value_type * >(argp3); + result = (arg1)->insert(arg2,(std::vector<HepMC::GenVertex const * >::value_type const &)*arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<HepMC::GenVertex const * >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_insert__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::iterator arg2 ; + std::vector<HepMC::GenVertex const * >::size_type arg3 ; + std::vector<HepMC::GenVertex const * >::value_type *arg4 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + void *argp4 = 0 ; + int res4 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:cGenVertexVector_insert",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_insert" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "cGenVertexVector_insert" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::iterator""'"); + } + } + ecode3 = SWIG_AsVal_size_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cGenVertexVector_insert" "', argument " "3"" of type '" "std::vector<HepMC::GenVertex const * >::size_type""'"); + } + arg3 = static_cast< std::vector<HepMC::GenVertex const * >::size_type >(val3); + res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0 ); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cGenVertexVector_insert" "', argument " "4"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + if (!argp4) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cGenVertexVector_insert" "', argument " "4"" of type '" "std::vector<HepMC::GenVertex const * >::value_type const &""'"); + } + arg4 = reinterpret_cast< std::vector<HepMC::GenVertex const * >::value_type * >(argp4); + (arg1)->insert(arg2,arg3,(std::vector<HepMC::GenVertex const * >::value_type const &)*arg4); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_insert(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[5]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 4); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter) != 0)); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_insert__SWIG_0(self, args); + } + } + } + } + if (argc == 4) { + int _v; + int res = swig::asptr(argv[0], (std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<HepMC::GenVertex const * >::iterator > *>(iter) != 0)); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_cGenVertexVector_insert__SWIG_1(self, args); + } + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cGenVertexVector_insert'.\n Possible C/C++ prototypes are:\n"" insert(std::vector<HepMC::GenVertex const * > *,std::vector<HepMC::GenVertex const * >::iterator,std::vector<HepMC::GenVertex const * >::value_type const &)\n"" insert(std::vector<HepMC::GenVertex const * > *,std::vector<HepMC::GenVertex const * >::iterator,std::vector<HepMC::GenVertex const * >::size_type,std::vector<HepMC::GenVertex const * >::value_type const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_reserve(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenVertexVector_reserve",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_reserve" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cGenVertexVector_reserve" "', argument " "2"" of type '" "std::vector<HepMC::GenVertex const * >::size_type""'"); + } + arg2 = static_cast< std::vector<HepMC::GenVertex const * >::size_type >(val2); + (arg1)->reserve(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenVertexVector_capacity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + std::vector<HepMC::GenVertex const * >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenVertexVector_capacity",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenVertexVector_capacity" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > const *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + result = ((std::vector<HepMC::GenVertex const * > const *)arg1)->capacity(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_cGenVertexVector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<HepMC::GenVertex const * > *arg1 = (std::vector<HepMC::GenVertex const * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_cGenVertexVector",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_cGenVertexVector" "', argument " "1"" of type '" "std::vector<HepMC::GenVertex const * > *""'"); + } + arg1 = reinterpret_cast< std::vector<HepMC::GenVertex const * > * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *cGenVertexVector_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_GenParticlePair__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_GenParticlePair")) SWIG_fail; + result = (std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *)new std::pair<HepMC::GenParticle *,HepMC::GenParticle * >(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticlePair__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::GenParticle *arg2 = (HepMC::GenParticle *) 0 ; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_GenParticlePair",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_GenParticlePair" "', argument " "1"" of type '" "HepMC::GenParticle *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_GenParticlePair" "', argument " "2"" of type '" "HepMC::GenParticle *""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + result = (std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *)new std::pair<HepMC::GenParticle *,HepMC::GenParticle * >(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticlePair__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *arg1 = 0 ; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *result = 0 ; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > temp1 ; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_GenParticlePair",&obj0)) SWIG_fail; + ecode1 = swig::asval<std::pair<HepMC::GenParticle*,HepMC::GenParticle* > >(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GenParticlePair" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle *,HepMC::GenParticle * >""'"); + } + temp1 = static_cast< std::pair<HepMC::GenParticle *,HepMC::GenParticle * > >(val1); + arg1 = &temp1; + result = (std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *)new std::pair<HepMC::GenParticle *,HepMC::GenParticle * >((std::pair<HepMC::GenParticle *,HepMC::GenParticle * > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_GenParticlePair(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_GenParticlePair__SWIG_0(self, args); + } + if (argc == 1) { + int _v; + { + int res = swig::asval<std::pair<HepMC::GenParticle*,HepMC::GenParticle* > >(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_GenParticlePair__SWIG_2(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_GenParticlePair__SWIG_1(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_GenParticlePair'.\n Possible C/C++ prototypes are:\n"" std::pair<(p.HepMC::GenParticle,p.HepMC::GenParticle)>()\n"" std::pair<(p.HepMC::GenParticle,p.HepMC::GenParticle)>(HepMC::GenParticle *,HepMC::GenParticle *)\n"" std::pair<(p.HepMC::GenParticle,p.HepMC::GenParticle)>(std::pair<HepMC::GenParticle *,HepMC::GenParticle * > const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticlePair_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *arg1 = (std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *) 0 ; + HepMC::GenParticle *arg2 = (HepMC::GenParticle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticlePair_first_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticlePair_first_set" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle *,HepMC::GenParticle * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticlePair_first_set" "', argument " "2"" of type '" "HepMC::GenParticle *""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + if (arg1) (arg1)->first = arg2; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticlePair_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *arg1 = (std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *) 0 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticlePair_first_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticlePair_first_get" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle *,HepMC::GenParticle * > * >(argp1); + result = (HepMC::GenParticle *) ((arg1)->first); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticlePair_second_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *arg1 = (std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *) 0 ; + HepMC::GenParticle *arg2 = (HepMC::GenParticle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:GenParticlePair_second_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticlePair_second_set" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle *,HepMC::GenParticle * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GenParticlePair_second_set" "', argument " "2"" of type '" "HepMC::GenParticle *""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + if (arg1) (arg1)->second = arg2; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_GenParticlePair_second_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *arg1 = (std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *) 0 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:GenParticlePair_second_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GenParticlePair_second_get" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle *,HepMC::GenParticle * > * >(argp1); + result = (HepMC::GenParticle *) ((arg1)->second); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_GenParticlePair(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *arg1 = (std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_GenParticlePair",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_GenParticlePair" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle *,HepMC::GenParticle * > * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *GenParticlePair_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_cGenParticlePair__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_cGenParticlePair")) SWIG_fail; + result = (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *)new std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * >(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenParticlePair__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenParticle *arg1 = (HepMC::GenParticle *) 0 ; + HepMC::GenParticle *arg2 = (HepMC::GenParticle *) 0 ; + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_cGenParticlePair",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_cGenParticlePair" "', argument " "1"" of type '" "HepMC::GenParticle const *""'"); + } + arg1 = reinterpret_cast< HepMC::GenParticle * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_cGenParticlePair" "', argument " "2"" of type '" "HepMC::GenParticle const *""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + result = (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *)new std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * >((HepMC::GenParticle const *)arg1,(HepMC::GenParticle const *)arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenParticlePair__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *arg1 = 0 ; + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_cGenParticlePair",&obj0)) SWIG_fail; + { + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *ptr = (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *)0; + res1 = swig::asptr(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_cGenParticlePair" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_cGenParticlePair" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > const &""'"); + } + arg1 = ptr; + } + result = (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *)new std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * >((std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_cGenParticlePair(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_cGenParticlePair__SWIG_0(self, args); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_cGenParticlePair__SWIG_2(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_HepMC__GenParticle, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_cGenParticlePair__SWIG_1(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_cGenParticlePair'.\n Possible C/C++ prototypes are:\n"" std::pair<(p.q(const).HepMC::GenParticle,p.q(const).HepMC::GenParticle)>()\n"" std::pair<(p.q(const).HepMC::GenParticle,p.q(const).HepMC::GenParticle)>(HepMC::GenParticle const *,HepMC::GenParticle const *)\n"" std::pair<(p.q(const).HepMC::GenParticle,p.q(const).HepMC::GenParticle)>(std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticlePair_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *arg1 = (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *) 0 ; + HepMC::GenParticle *arg2 = (HepMC::GenParticle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticlePair_first_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticlePair_first_set" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cGenParticlePair_first_set" "', argument " "2"" of type '" "HepMC::GenParticle const *""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + if (arg1) (arg1)->first = (HepMC::GenParticle const *)arg2; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticlePair_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *arg1 = (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *) 0 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticlePair_first_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticlePair_first_get" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > * >(argp1); + result = (HepMC::GenParticle *) ((arg1)->first); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticlePair_second_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *arg1 = (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *) 0 ; + HepMC::GenParticle *arg2 = (HepMC::GenParticle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:cGenParticlePair_second_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticlePair_second_set" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_HepMC__GenParticle, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cGenParticlePair_second_set" "', argument " "2"" of type '" "HepMC::GenParticle const *""'"); + } + arg2 = reinterpret_cast< HepMC::GenParticle * >(argp2); + if (arg1) (arg1)->second = (HepMC::GenParticle const *)arg2; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_cGenParticlePair_second_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *arg1 = (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *) 0 ; + HepMC::GenParticle *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:cGenParticlePair_second_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cGenParticlePair_second_get" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > * >(argp1); + result = (HepMC::GenParticle *) ((arg1)->second); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_HepMC__GenParticle, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_cGenParticlePair(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *arg1 = (std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_cGenParticlePair",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_cGenParticlePair" "', argument " "1"" of type '" "std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *""'"); + } + arg1 = reinterpret_cast< std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *cGenParticlePair_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_StrList_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + PyObject **arg2 = (PyObject **) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + arg2 = &obj0; + if (!PyArg_ParseTuple(args,(char *)"O:StrList_iterator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_iterator" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = (swig::PySwigIterator *)std_vector_Sl_std_string_Sg__iterator(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList___nonzero__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList___nonzero__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList___nonzero__" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = (bool)std_vector_Sl_std_string_Sg____nonzero__((std::vector<std::string > const *)arg1); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList___len__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList___len__" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = std_vector_Sl_std_string_Sg____len__((std::vector<std::string > const *)arg1); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::value_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_pop",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_pop" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + try { + result = std_vector_Sl_std_string_Sg__pop(arg1); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList___getslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::difference_type arg2 ; + std::vector<std::string >::difference_type arg3 ; + std::vector<std::string,std::allocator<std::string > > *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:StrList___getslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList___getslice__" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList___getslice__" "', argument " "2"" of type '" "std::vector<std::string >::difference_type""'"); + } + arg2 = static_cast< std::vector<std::string >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "StrList___getslice__" "', argument " "3"" of type '" "std::vector<std::string >::difference_type""'"); + } + arg3 = static_cast< std::vector<std::string >::difference_type >(val3); + try { + result = (std::vector<std::string,std::allocator<std::string > > *)std_vector_Sl_std_string_Sg____getslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList___setslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::difference_type arg2 ; + std::vector<std::string >::difference_type arg3 ; + std::vector<std::string,std::allocator<std::string > > *arg4 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + int res4 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:StrList___setslice__",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList___setslice__" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList___setslice__" "', argument " "2"" of type '" "std::vector<std::string >::difference_type""'"); + } + arg2 = static_cast< std::vector<std::string >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "StrList___setslice__" "', argument " "3"" of type '" "std::vector<std::string >::difference_type""'"); + } + arg3 = static_cast< std::vector<std::string >::difference_type >(val3); + { + std::vector<std::string,std::allocator<std::string > > *ptr = (std::vector<std::string,std::allocator<std::string > > *)0; + res4 = swig::asptr(obj3, &ptr); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "StrList___setslice__" "', argument " "4"" of type '" "std::vector<std::string,std::allocator<std::string > > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "StrList___setslice__" "', argument " "4"" of type '" "std::vector<std::string,std::allocator<std::string > > const &""'"); + } + arg4 = ptr; + } + try { + std_vector_Sl_std_string_Sg____setslice__(arg1,arg2,arg3,(std::vector<std::string,std::allocator<std::string > > const &)*arg4); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + catch(std::invalid_argument &_e) { + SWIG_exception_fail(SWIG_ValueError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res4)) delete arg4; + return resultobj; +fail: + if (SWIG_IsNewObj(res4)) delete arg4; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList___delslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::difference_type arg2 ; + std::vector<std::string >::difference_type arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + ptrdiff_t val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:StrList___delslice__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList___delslice__" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList___delslice__" "', argument " "2"" of type '" "std::vector<std::string >::difference_type""'"); + } + arg2 = static_cast< std::vector<std::string >::difference_type >(val2); + ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "StrList___delslice__" "', argument " "3"" of type '" "std::vector<std::string >::difference_type""'"); + } + arg3 = static_cast< std::vector<std::string >::difference_type >(val3); + try { + std_vector_Sl_std_string_Sg____delslice__(arg1,arg2,arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList___delitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::difference_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:StrList___delitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList___delitem__" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList___delitem__" "', argument " "2"" of type '" "std::vector<std::string >::difference_type""'"); + } + arg2 = static_cast< std::vector<std::string >::difference_type >(val2); + try { + std_vector_Sl_std_string_Sg____delitem__(arg1,arg2); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::difference_type arg2 ; + std::vector<std::string >::value_type *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:StrList___getitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList___getitem__" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList___getitem__" "', argument " "2"" of type '" "std::vector<std::string >::difference_type""'"); + } + arg2 = static_cast< std::vector<std::string >::difference_type >(val2); + try { + { + std::vector<std::string >::value_type const &_result_ref = std_vector_Sl_std_string_Sg____getitem__((std::vector<std::string > const *)arg1,arg2); + result = (std::vector<std::string >::value_type *) &_result_ref; + } + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_From_std_string(static_cast< std::string >(*result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::difference_type arg2 ; + std::vector<std::string >::value_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + ptrdiff_t val2 ; + int ecode2 = 0 ; + int res3 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:StrList___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList___setitem__" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList___setitem__" "', argument " "2"" of type '" "std::vector<std::string >::difference_type""'"); + } + arg2 = static_cast< std::vector<std::string >::difference_type >(val2); + { + std::string *ptr = (std::string *)0; + res3 = SWIG_AsPtr_std_string(obj2, &ptr); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "StrList___setitem__" "', argument " "3"" of type '" "std::vector<std::string >::value_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "StrList___setitem__" "', argument " "3"" of type '" "std::vector<std::string >::value_type const &""'"); + } + arg3 = ptr; + } + try { + std_vector_Sl_std_string_Sg____setitem__(arg1,arg2,(std::string const &)*arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res3)) delete arg3; + return resultobj; +fail: + if (SWIG_IsNewObj(res3)) delete arg3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::value_type *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:StrList_append",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_append" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "StrList_append" "', argument " "2"" of type '" "std::vector<std::string >::value_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "StrList_append" "', argument " "2"" of type '" "std::vector<std::string >::value_type const &""'"); + } + arg2 = ptr; + } + std_vector_Sl_std_string_Sg__append(arg1,(std::string const &)*arg2); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_StrList__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_StrList")) SWIG_fail; + result = (std::vector<std::string > *)new std::vector<std::string >(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_StrList__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = 0 ; + std::vector<std::string > *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_StrList",&obj0)) SWIG_fail; + { + std::vector<std::string,std::allocator<std::string > > *ptr = (std::vector<std::string,std::allocator<std::string > > *)0; + res1 = swig::asptr(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_StrList" "', argument " "1"" of type '" "std::vector<std::string > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_StrList" "', argument " "1"" of type '" "std::vector<std::string > const &""'"); + } + arg1 = ptr; + } + result = (std::vector<std::string > *)new std::vector<std::string >((std::vector<std::string > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_empty",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_empty" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = (bool)((std::vector<std::string > const *)arg1)->empty(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_size" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = ((std::vector<std::string > const *)arg1)->size(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_clear",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_clear" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + (arg1)->clear(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string > *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:StrList_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_swap" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "StrList_swap" "', argument " "2"" of type '" "std::vector<std::string > &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "StrList_swap" "', argument " "2"" of type '" "std::vector<std::string > &""'"); + } + arg2 = reinterpret_cast< std::vector<std::string > * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_get_allocator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + SwigValueWrapper< std::allocator<std::string > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_get_allocator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_get_allocator" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = ((std::vector<std::string > const *)arg1)->get_allocator(); + resultobj = SWIG_NewPointerObj((new std::vector<std::string >::allocator_type(static_cast< const std::vector<std::string >::allocator_type& >(result))), SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_begin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_begin" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = (arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_begin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_begin" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = ((std::vector<std::string > const *)arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_begin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_begin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_begin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'StrList_begin'.\n Possible C/C++ prototypes are:\n"" begin(std::vector<std::string > *)\n"" begin(std::vector<std::string > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_end__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_end" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = (arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_end__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_end" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = ((std::vector<std::string > const *)arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_end(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_end__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_end__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'StrList_end'.\n Possible C/C++ prototypes are:\n"" end(std::vector<std::string > *)\n"" end(std::vector<std::string > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_rbegin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_rbegin" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = (arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_rbegin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_rbegin" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = ((std::vector<std::string > const *)arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_rbegin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_rbegin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_rbegin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'StrList_rbegin'.\n Possible C/C++ prototypes are:\n"" rbegin(std::vector<std::string > *)\n"" rbegin(std::vector<std::string > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_rend__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_rend" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = (arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_rend__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_rend" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = ((std::vector<std::string > const *)arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_rend(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_rend__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_rend__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'StrList_rend'.\n Possible C/C++ prototypes are:\n"" rend(std::vector<std::string > *)\n"" rend(std::vector<std::string > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_StrList__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string >::size_type arg1 ; + std::vector<std::string > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_StrList",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_StrList" "', argument " "1"" of type '" "std::vector<std::string >::size_type""'"); + } + arg1 = static_cast< std::vector<std::string >::size_type >(val1); + result = (std::vector<std::string > *)new std::vector<std::string >(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_pop_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_pop_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_pop_back" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + (arg1)->pop_back(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_resize__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:StrList_resize",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_resize" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList_resize" "', argument " "2"" of type '" "std::vector<std::string >::size_type""'"); + } + arg2 = static_cast< std::vector<std::string >::size_type >(val2); + (arg1)->resize(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_erase__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::iterator arg2 ; + std::vector<std::string >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:StrList_erase",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_erase" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_erase" "', argument " "2"" of type '" "std::vector<std::string >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<std::string >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_erase" "', argument " "2"" of type '" "std::vector<std::string >::iterator""'"); + } + } + result = (arg1)->erase(arg2); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_erase__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::iterator arg2 ; + std::vector<std::string >::iterator arg3 ; + std::vector<std::string >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + swig::PySwigIterator *iter3 = 0 ; + int res3 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:StrList_erase",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_erase" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_erase" "', argument " "2"" of type '" "std::vector<std::string >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<std::string >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_erase" "', argument " "2"" of type '" "std::vector<std::string >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, SWIG_as_voidptrptr(&iter3), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res3) || !iter3) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_erase" "', argument " "3"" of type '" "std::vector<std::string >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<std::string >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter3); + if (iter_t) { + arg3 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_erase" "', argument " "3"" of type '" "std::vector<std::string >::iterator""'"); + } + } + result = (arg1)->erase(arg2,arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_erase(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_StrList_erase__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter) != 0)); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_StrList_erase__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'StrList_erase'.\n Possible C/C++ prototypes are:\n"" erase(std::vector<std::string > *,std::vector<std::string >::iterator)\n"" erase(std::vector<std::string > *,std::vector<std::string >::iterator,std::vector<std::string >::iterator)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_StrList__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string >::size_type arg1 ; + std::vector<std::string >::value_type *arg2 = 0 ; + std::vector<std::string > *result = 0 ; + size_t val1 ; + int ecode1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_StrList",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_size_t(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_StrList" "', argument " "1"" of type '" "std::vector<std::string >::size_type""'"); + } + arg1 = static_cast< std::vector<std::string >::size_type >(val1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_StrList" "', argument " "2"" of type '" "std::vector<std::string >::value_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_StrList" "', argument " "2"" of type '" "std::vector<std::string >::value_type const &""'"); + } + arg2 = ptr; + } + result = (std::vector<std::string > *)new std::vector<std::string >(arg1,(std::vector<std::string >::value_type const &)*arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_StrList(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_StrList__SWIG_0(self, args); + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_StrList__SWIG_2(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_StrList__SWIG_1(self, args); + } + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_size_t(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_StrList__SWIG_3(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_StrList'.\n Possible C/C++ prototypes are:\n"" std::vector<(std::string)>()\n"" std::vector<(std::string)>(std::vector<std::string > const &)\n"" std::vector<(std::string)>(std::vector<std::string >::size_type)\n"" std::vector<(std::string)>(std::vector<std::string >::size_type,std::vector<std::string >::value_type const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_push_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::value_type *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:StrList_push_back",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_push_back" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "StrList_push_back" "', argument " "2"" of type '" "std::vector<std::string >::value_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "StrList_push_back" "', argument " "2"" of type '" "std::vector<std::string >::value_type const &""'"); + } + arg2 = ptr; + } + (arg1)->push_back((std::vector<std::string >::value_type const &)*arg2); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_front(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::value_type *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_front",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_front" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + { + std::vector<std::string >::value_type const &_result_ref = ((std::vector<std::string > const *)arg1)->front(); + result = (std::vector<std::string >::value_type *) &_result_ref; + } + resultobj = SWIG_From_std_string(static_cast< std::string >(*result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::value_type *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_back",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_back" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + { + std::vector<std::string >::value_type const &_result_ref = ((std::vector<std::string > const *)arg1)->back(); + result = (std::vector<std::string >::value_type *) &_result_ref; + } + resultobj = SWIG_From_std_string(static_cast< std::string >(*result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_assign(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::size_type arg2 ; + std::vector<std::string >::value_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + int res3 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:StrList_assign",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_assign" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList_assign" "', argument " "2"" of type '" "std::vector<std::string >::size_type""'"); + } + arg2 = static_cast< std::vector<std::string >::size_type >(val2); + { + std::string *ptr = (std::string *)0; + res3 = SWIG_AsPtr_std_string(obj2, &ptr); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "StrList_assign" "', argument " "3"" of type '" "std::vector<std::string >::value_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "StrList_assign" "', argument " "3"" of type '" "std::vector<std::string >::value_type const &""'"); + } + arg3 = ptr; + } + (arg1)->assign(arg2,(std::vector<std::string >::value_type const &)*arg3); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res3)) delete arg3; + return resultobj; +fail: + if (SWIG_IsNewObj(res3)) delete arg3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_resize__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::size_type arg2 ; + std::vector<std::string >::value_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + int res3 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:StrList_resize",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_resize" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList_resize" "', argument " "2"" of type '" "std::vector<std::string >::size_type""'"); + } + arg2 = static_cast< std::vector<std::string >::size_type >(val2); + { + std::string *ptr = (std::string *)0; + res3 = SWIG_AsPtr_std_string(obj2, &ptr); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "StrList_resize" "', argument " "3"" of type '" "std::vector<std::string >::value_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "StrList_resize" "', argument " "3"" of type '" "std::vector<std::string >::value_type const &""'"); + } + arg3 = ptr; + } + (arg1)->resize(arg2,(std::vector<std::string >::value_type const &)*arg3); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res3)) delete arg3; + return resultobj; +fail: + if (SWIG_IsNewObj(res3)) delete arg3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_resize(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_StrList_resize__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + int res = SWIG_AsPtr_std_string(argv[2], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_resize__SWIG_1(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'StrList_resize'.\n Possible C/C++ prototypes are:\n"" resize(std::vector<std::string > *,std::vector<std::string >::size_type)\n"" resize(std::vector<std::string > *,std::vector<std::string >::size_type,std::vector<std::string >::value_type const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_insert__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::iterator arg2 ; + std::vector<std::string >::value_type *arg3 = 0 ; + std::vector<std::string >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + int res3 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:StrList_insert",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_insert" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_insert" "', argument " "2"" of type '" "std::vector<std::string >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<std::string >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_insert" "', argument " "2"" of type '" "std::vector<std::string >::iterator""'"); + } + } + { + std::string *ptr = (std::string *)0; + res3 = SWIG_AsPtr_std_string(obj2, &ptr); + if (!SWIG_IsOK(res3)) { + SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "StrList_insert" "', argument " "3"" of type '" "std::vector<std::string >::value_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "StrList_insert" "', argument " "3"" of type '" "std::vector<std::string >::value_type const &""'"); + } + arg3 = ptr; + } + result = (arg1)->insert(arg2,(std::vector<std::string >::value_type const &)*arg3); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector<std::string >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + if (SWIG_IsNewObj(res3)) delete arg3; + return resultobj; +fail: + if (SWIG_IsNewObj(res3)) delete arg3; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_insert__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::iterator arg2 ; + std::vector<std::string >::size_type arg3 ; + std::vector<std::string >::value_type *arg4 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + size_t val3 ; + int ecode3 = 0 ; + int res4 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOOO:StrList_insert",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_insert" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_insert" "', argument " "2"" of type '" "std::vector<std::string >::iterator""'"); + } else { + swig::PySwigIterator_T<std::vector<std::string >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "StrList_insert" "', argument " "2"" of type '" "std::vector<std::string >::iterator""'"); + } + } + ecode3 = SWIG_AsVal_size_t(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "StrList_insert" "', argument " "3"" of type '" "std::vector<std::string >::size_type""'"); + } + arg3 = static_cast< std::vector<std::string >::size_type >(val3); + { + std::string *ptr = (std::string *)0; + res4 = SWIG_AsPtr_std_string(obj3, &ptr); + if (!SWIG_IsOK(res4)) { + SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "StrList_insert" "', argument " "4"" of type '" "std::vector<std::string >::value_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "StrList_insert" "', argument " "4"" of type '" "std::vector<std::string >::value_type const &""'"); + } + arg4 = ptr; + } + (arg1)->insert(arg2,arg3,(std::vector<std::string >::value_type const &)*arg4); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res4)) delete arg4; + return resultobj; +fail: + if (SWIG_IsNewObj(res4)) delete arg4; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_insert(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[5]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 4); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter) != 0)); + if (_v) { + int res = SWIG_AsPtr_std_string(argv[2], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_insert__SWIG_0(self, args); + } + } + } + } + if (argc == 4) { + int _v; + int res = swig::asptr(argv[0], (std::vector<std::string,std::allocator<std::string > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::vector<std::string >::iterator > *>(iter) != 0)); + if (_v) { + { + int res = SWIG_AsVal_size_t(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + int res = SWIG_AsPtr_std_string(argv[3], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_StrList_insert__SWIG_1(self, args); + } + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'StrList_insert'.\n Possible C/C++ prototypes are:\n"" insert(std::vector<std::string > *,std::vector<std::string >::iterator,std::vector<std::string >::value_type const &)\n"" insert(std::vector<std::string > *,std::vector<std::string >::iterator,std::vector<std::string >::size_type,std::vector<std::string >::value_type const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_reserve(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::size_type arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + size_t val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:StrList_reserve",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_reserve" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + ecode2 = SWIG_AsVal_size_t(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "StrList_reserve" "', argument " "2"" of type '" "std::vector<std::string >::size_type""'"); + } + arg2 = static_cast< std::vector<std::string >::size_type >(val2); + (arg1)->reserve(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_StrList_capacity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + std::vector<std::string >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:StrList_capacity",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StrList_capacity" "', argument " "1"" of type '" "std::vector<std::string > const *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + result = ((std::vector<std::string > const *)arg1)->capacity(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_StrList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_StrList",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_StrList" "', argument " "1"" of type '" "std::vector<std::string > *""'"); + } + arg1 = reinterpret_cast< std::vector<std::string > * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *StrList_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_std__vectorTstd__string_std__allocatorTstd__string_t_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_getKnownHistoFormats(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + SwigValueWrapper< std::map<enum Rivet::HistoFormat,std::string,std::less<enum Rivet::HistoFormat >,std::allocator<std::pair<enum Rivet::HistoFormat const,std::string > > > > result; + + if (!PyArg_ParseTuple(args,(char *)":getKnownHistoFormats")) SWIG_fail; + result = Rivet::getKnownHistoFormats(); + resultobj = SWIG_NewPointerObj((new Rivet::HistoFormatMap(static_cast< const Rivet::HistoFormatMap& >(result))), SWIGTYPE_p_std__mapTRivet__HistoFormat_std__string_std__lessTRivet__HistoFormat_t_std__allocatorTstd__pairTRivet__HistoFormat_const_std__string_t_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_getKnownHistoFormatsR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + SwigValueWrapper< std::map<std::string,enum Rivet::HistoFormat,std::less<std::string >,std::allocator<std::pair<std::string const,enum Rivet::HistoFormat > > > > result; + + if (!PyArg_ParseTuple(args,(char *)":getKnownHistoFormatsR")) SWIG_fail; + result = Rivet::getKnownHistoFormatsR(); + resultobj = SWIG_NewPointerObj((new Rivet::HistoFormatMapR(static_cast< const Rivet::HistoFormatMapR& >(result))), SWIGTYPE_p_std__mapTstd__string_Rivet__HistoFormat_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_Rivet__HistoFormat_t_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_getKnownHistoFormatEnums(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + SwigValueWrapper< std::vector<enum Rivet::HistoFormat,std::allocator<enum Rivet::HistoFormat > > > result; + + if (!PyArg_ParseTuple(args,(char *)":getKnownHistoFormatEnums")) SWIG_fail; + result = Rivet::getKnownHistoFormatEnums(); + resultobj = SWIG_NewPointerObj((new Rivet::HistoFormatList(static_cast< const Rivet::HistoFormatList& >(result))), SWIGTYPE_p_std__vectorTRivet__HistoFormat_std__allocatorTRivet__HistoFormat_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_getKnownHistoFormatNames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string,std::allocator<std::string > > result; + + if (!PyArg_ParseTuple(args,(char *)":getKnownHistoFormatNames")) SWIG_fail; + result = Rivet::getKnownHistoFormatNames(); + resultobj = swig::from(static_cast< std::vector<std::string,std::allocator<std::string > > >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_make_pdgid_pair__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::PdgId arg1 ; + Rivet::PdgId arg2 ; + std::pair<Rivet::PdgId,Rivet::PdgId > result; + long val1 ; + int ecode1 = 0 ; + long val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:make_pdgid_pair",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_long(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "make_pdgid_pair" "', argument " "1"" of type '" "Rivet::PdgId""'"); + } + arg1 = static_cast< Rivet::PdgId >(val1); + ecode2 = SWIG_AsVal_long(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "make_pdgid_pair" "', argument " "2"" of type '" "Rivet::PdgId""'"); + } + arg2 = static_cast< Rivet::PdgId >(val2); + result = Rivet::make_pdgid_pair(arg1,arg2); + resultobj = SWIG_NewPointerObj((new std::pair<Rivet::PdgId,Rivet::PdgId >(static_cast< const std::pair<Rivet::PdgId,Rivet::PdgId >& >(result))), SWIGTYPE_p_std__pairTlong_long_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_make_pdgid_pair__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::ParticleName arg1 ; + Rivet::ParticleName arg2 ; + std::pair<Rivet::PdgId,Rivet::PdgId > result; + int val1 ; + int ecode1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:make_pdgid_pair",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "make_pdgid_pair" "', argument " "1"" of type '" "Rivet::ParticleName""'"); + } + arg1 = static_cast< Rivet::ParticleName >(val1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "make_pdgid_pair" "', argument " "2"" of type '" "Rivet::ParticleName""'"); + } + arg2 = static_cast< Rivet::ParticleName >(val2); + result = Rivet::make_pdgid_pair(arg1,arg2); + resultobj = SWIG_NewPointerObj((new std::pair<Rivet::PdgId,Rivet::PdgId >(static_cast< const std::pair<Rivet::PdgId,Rivet::PdgId >& >(result))), SWIGTYPE_p_std__pairTlong_long_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_make_pdgid_pair(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_int(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_make_pdgid_pair__SWIG_1(self, args); + } + } + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_long(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_long(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_make_pdgid_pair__SWIG_0(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'make_pdgid_pair'.\n Possible C/C++ prototypes are:\n"" Rivet::make_pdgid_pair(Rivet::PdgId,Rivet::PdgId)\n"" Rivet::make_pdgid_pair(Rivet::ParticleName,Rivet::ParticleName)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_getParticleNamesMap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + SwigValueWrapper< std::map<long,std::string,std::less<long >,std::allocator<std::pair<long const,std::string > > > > result; + + if (!PyArg_ParseTuple(args,(char *)":getParticleNamesMap")) SWIG_fail; + result = Rivet::getParticleNamesMap(); + resultobj = SWIG_NewPointerObj((new Rivet::ParticleNameMap(static_cast< const Rivet::ParticleNameMap& >(result))), SWIGTYPE_p_std__mapTlong_std__string_std__lessTlong_t_std__allocatorTstd__pairTlong_const_std__string_t_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_getParticleNamesRMap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + SwigValueWrapper< std::map<std::string,long,std::less<std::string >,std::allocator<std::pair<std::string const,long > > > > result; + + if (!PyArg_ParseTuple(args,(char *)":getParticleNamesRMap")) SWIG_fail; + result = Rivet::getParticleNamesRMap(); + resultobj = SWIG_NewPointerObj((new Rivet::ParticleNameMapR(static_cast< const Rivet::ParticleNameMapR& >(result))), SWIGTYPE_p_std__mapTstd__string_long_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_long_t_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_getParticleNameEnums(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + SwigValueWrapper< std::vector<long,std::allocator<long > > > result; + + if (!PyArg_ParseTuple(args,(char *)":getParticleNameEnums")) SWIG_fail; + result = Rivet::getParticleNameEnums(); + resultobj = SWIG_NewPointerObj((new Rivet::ParticleNameList(static_cast< const Rivet::ParticleNameList& >(result))), SWIGTYPE_p_std__vectorTlong_std__allocatorTlong_t_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_getParticleNameEnum(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string *arg1 = 0 ; + Rivet::ParticleName result; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:getParticleNameEnum",&obj0)) SWIG_fail; + { + std::string *ptr = (std::string *)0; + res1 = SWIG_AsPtr_std_string(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "getParticleNameEnum" "', argument " "1"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "getParticleNameEnum" "', argument " "1"" of type '" "std::string const &""'"); + } + arg1 = ptr; + } + result = (Rivet::ParticleName)Rivet::getParticleNameEnum((std::string const &)*arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_getParticleNames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string,std::allocator<std::string > > result; + + if (!PyArg_ParseTuple(args,(char *)":getParticleNames")) SWIG_fail; + result = Rivet::getParticleNames(); + resultobj = swig::from(static_cast< std::vector<std::string,std::allocator<std::string > > >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_toString__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::ParticleName *arg1 = 0 ; + std::string result; + int val1 ; + int ecode1 ; + Rivet::ParticleName temp1 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:toString",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_int (obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "toString" "', argument " "1"" of type '" "Rivet::ParticleName const &""'"); + } else { + temp1 = static_cast< Rivet::ParticleName >(val1); + arg1 = &temp1; + } + result = Rivet::toString((enum Rivet::ParticleName const &)*arg1); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_toParticleName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::PdgId arg1 ; + std::string result; + long val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:toParticleName",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_long(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "toParticleName" "', argument " "1"" of type '" "Rivet::PdgId""'"); + } + arg1 = static_cast< Rivet::PdgId >(val1); + result = Rivet::toParticleName(arg1); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap___lshift____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::ostream *arg1 = 0 ; + Rivet::ParticleName *arg2 = 0 ; + std::ostream *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 ; + Rivet::ParticleName temp2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:__lshift__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_std__ostream, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "__lshift__" "', argument " "1"" of type '" "std::ostream &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "__lshift__" "', argument " "1"" of type '" "std::ostream &""'"); + } + arg1 = reinterpret_cast< std::ostream * >(argp1); + ecode2 = SWIG_AsVal_int (obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "__lshift__" "', argument " "2"" of type '" "Rivet::ParticleName const &""'"); + } else { + temp2 = static_cast< Rivet::ParticleName >(val2); + arg2 = &temp2; + } + { + std::ostream &_result_ref = Rivet::operator <<(*arg1,(enum Rivet::ParticleName const &)*arg2); + result = (std::ostream *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__ostream, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_toString__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::BeamPair *arg1 = 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:toString",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_std__pairTlong_long_t, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "toString" "', argument " "1"" of type '" "Rivet::BeamPair const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "toString" "', argument " "1"" of type '" "Rivet::BeamPair const &""'"); + } + arg1 = reinterpret_cast< Rivet::BeamPair * >(argp1); + result = Rivet::toString((std::pair<long,long > const &)*arg1); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_toString(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_std__pairTlong_long_t, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_toString__SWIG_1(self, args); + } + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_int(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_toString__SWIG_0(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'toString'.\n Possible C/C++ prototypes are:\n"" Rivet::toString(Rivet::ParticleName const &)\n"" Rivet::toString(Rivet::BeamPair const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap___lshift____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::ostream *arg1 = 0 ; + Rivet::BeamPair *arg2 = 0 ; + std::ostream *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:__lshift__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_std__ostream, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "__lshift__" "', argument " "1"" of type '" "std::ostream &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "__lshift__" "', argument " "1"" of type '" "std::ostream &""'"); + } + arg1 = reinterpret_cast< std::ostream * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__pairTlong_long_t, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "__lshift__" "', argument " "2"" of type '" "Rivet::BeamPair const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "__lshift__" "', argument " "2"" of type '" "Rivet::BeamPair const &""'"); + } + arg2 = reinterpret_cast< Rivet::BeamPair * >(argp2); + { + std::ostream &_result_ref = Rivet::operator <<(*arg1,(std::pair<long,long > const &)*arg2); + result = (std::ostream *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__ostream, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_BeamPair__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<long,long > *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_BeamPair")) SWIG_fail; + result = (std::pair<long,long > *)new std::pair<long,long >(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__pairTlong_long_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_BeamPair__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + long arg1 ; + long arg2 ; + std::pair<long,long > *result = 0 ; + long val1 ; + int ecode1 = 0 ; + long val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_BeamPair",&obj0,&obj1)) SWIG_fail; + ecode1 = SWIG_AsVal_long(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_BeamPair" "', argument " "1"" of type '" "long""'"); + } + arg1 = static_cast< long >(val1); + ecode2 = SWIG_AsVal_long(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_BeamPair" "', argument " "2"" of type '" "long""'"); + } + arg2 = static_cast< long >(val2); + result = (std::pair<long,long > *)new std::pair<long,long >(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__pairTlong_long_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_BeamPair__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<long,long > *arg1 = 0 ; + std::pair<long,long > *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_BeamPair",&obj0)) SWIG_fail; + { + std::pair<long,long > *ptr = (std::pair<long,long > *)0; + res1 = swig::asptr(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_BeamPair" "', argument " "1"" of type '" "std::pair<long,long > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_BeamPair" "', argument " "1"" of type '" "std::pair<long,long > const &""'"); + } + arg1 = ptr; + } + result = (std::pair<long,long > *)new std::pair<long,long >((std::pair<long,long > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__pairTlong_long_t, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_BeamPair(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_BeamPair__SWIG_0(self, args); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::pair<long,long >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_BeamPair__SWIG_2(self, args); + } + } + if (argc == 2) { + int _v; + { + int res = SWIG_AsVal_long(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_long(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_BeamPair__SWIG_1(self, args); + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_BeamPair'.\n Possible C/C++ prototypes are:\n"" std::pair<(long,long)>()\n"" std::pair<(long,long)>(long,long)\n"" std::pair<(long,long)>(std::pair<long,long > const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_BeamPair_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<long,long > *arg1 = (std::pair<long,long > *) 0 ; + long arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + long val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:BeamPair_first_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTlong_long_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "BeamPair_first_set" "', argument " "1"" of type '" "std::pair<long,long > *""'"); + } + arg1 = reinterpret_cast< std::pair<long,long > * >(argp1); + ecode2 = SWIG_AsVal_long(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "BeamPair_first_set" "', argument " "2"" of type '" "long""'"); + } + arg2 = static_cast< long >(val2); + if (arg1) (arg1)->first = arg2; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_BeamPair_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<long,long > *arg1 = (std::pair<long,long > *) 0 ; + long result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:BeamPair_first_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTlong_long_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "BeamPair_first_get" "', argument " "1"" of type '" "std::pair<long,long > *""'"); + } + arg1 = reinterpret_cast< std::pair<long,long > * >(argp1); + result = (long) ((arg1)->first); + resultobj = SWIG_From_long(static_cast< long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_BeamPair_second_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<long,long > *arg1 = (std::pair<long,long > *) 0 ; + long arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + long val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:BeamPair_second_set",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTlong_long_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "BeamPair_second_set" "', argument " "1"" of type '" "std::pair<long,long > *""'"); + } + arg1 = reinterpret_cast< std::pair<long,long > * >(argp1); + ecode2 = SWIG_AsVal_long(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "BeamPair_second_set" "', argument " "2"" of type '" "long""'"); + } + arg2 = static_cast< long >(val2); + if (arg1) (arg1)->second = arg2; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_BeamPair_second_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<long,long > *arg1 = (std::pair<long,long > *) 0 ; + long result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:BeamPair_second_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTlong_long_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "BeamPair_second_get" "', argument " "1"" of type '" "std::pair<long,long > *""'"); + } + arg1 = reinterpret_cast< std::pair<long,long > * >(argp1); + result = (long) ((arg1)->second); + resultobj = SWIG_From_long(static_cast< long >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_BeamPair(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::pair<long,long > *arg1 = (std::pair<long,long > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_BeamPair",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__pairTlong_long_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_BeamPair" "', argument " "1"" of type '" "std::pair<long,long > *""'"); + } + arg1 = reinterpret_cast< std::pair<long,long > * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *BeamPair_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_std__pairTlong_long_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_LogLevelMap__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::less<std::string > *arg1 = 0 ; + std::map<std::string,int > *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_LogLevelMap",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_std__lessTstd__string_t, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_LogLevelMap" "', argument " "1"" of type '" "std::less<std::string > const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_LogLevelMap" "', argument " "1"" of type '" "std::less<std::string > const &""'"); + } + arg1 = reinterpret_cast< std::less<std::string > * >(argp1); + result = (std::map<std::string,int > *)new std::map<std::string,int >((std::less<std::string > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + PyObject **arg2 = (PyObject **) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + arg2 = &obj0; + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_iterator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_iterator" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (swig::PySwigIterator *)std_map_Sl_std_string_Sc_int_Sg__iterator(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap___nonzero__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap___nonzero__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap___nonzero__" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (bool)std_map_Sl_std_string_Sc_int_Sg____nonzero__((std::map<std::string,int > const *)arg1); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap___len__",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap___len__" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = std_map_Sl_std_string_Sc_int_Sg____len__((std::map<std::string,int > const *)arg1); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + std::map<std::string,int >::mapped_type result; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap___getitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap___getitem__" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap___getitem__" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap___getitem__" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + try { + result = (std::map<std::string,int >::mapped_type)std_map_Sl_std_string_Sc_int_Sg____getitem__((std::map<std::string,int > const *)arg1,(std::string const &)*arg2); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_From_int(static_cast< int >(result)); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap___delitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap___delitem__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap___delitem__" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap___delitem__" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap___delitem__" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + try { + std_map_Sl_std_string_Sc_int_Sg____delitem__(arg1,(std::string const &)*arg2); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_has_key(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap_has_key",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_has_key" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap_has_key" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap_has_key" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + result = (bool)std_map_Sl_std_string_Sc_int_Sg__has_key((std::map<std::string,int > const *)arg1,(std::string const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_keys(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + PyObject *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_keys",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_keys" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (PyObject *)std_map_Sl_std_string_Sc_int_Sg__keys(arg1); + resultobj = result; + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_values(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + PyObject *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_values",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_values" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (PyObject *)std_map_Sl_std_string_Sc_int_Sg__values(arg1); + resultobj = result; + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_items(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + PyObject *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_items",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_items" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (PyObject *)std_map_Sl_std_string_Sc_int_Sg__items(arg1); + resultobj = result; + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap___contains__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap___contains__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap___contains__" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap___contains__" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap___contains__" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + result = (bool)std_map_Sl_std_string_Sc_int_Sg____contains__(arg1,(std::string const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_key_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + PyObject **arg2 = (PyObject **) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + arg2 = &obj0; + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_key_iterator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_key_iterator" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (swig::PySwigIterator *)std_map_Sl_std_string_Sc_int_Sg__key_iterator(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_value_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + PyObject **arg2 = (PyObject **) 0 ; + swig::PySwigIterator *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + arg2 = &obj0; + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_value_iterator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_value_iterator" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (swig::PySwigIterator *)std_map_Sl_std_string_Sc_int_Sg__value_iterator(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__PySwigIterator, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + std::map<std::string,int >::mapped_type *arg3 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + std::map<std::string,int >::mapped_type temp3 ; + int val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:LogLevelMap___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap___setitem__" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap___setitem__" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap___setitem__" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "LogLevelMap___setitem__" "', argument " "3"" of type '" "std::map<std::string,int >::mapped_type""'"); + } + temp3 = static_cast< std::map<std::string,int >::mapped_type >(val3); + arg3 = &temp3; + try { + std_map_Sl_std_string_Sc_int_Sg____setitem__(arg1,(std::string const &)*arg2,(int const &)*arg3); + } + catch(std::out_of_range &_e) { + SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); + } + + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_LogLevelMap__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_LogLevelMap")) SWIG_fail; + result = (std::map<std::string,int > *)new std::map<std::string,int >(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_LogLevelMap__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = 0 ; + std::map<std::string,int > *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_LogLevelMap",&obj0)) SWIG_fail; + { + std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > > *ptr = (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > > *)0; + res1 = swig::asptr(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_LogLevelMap" "', argument " "1"" of type '" "std::map<std::string,int > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_LogLevelMap" "', argument " "1"" of type '" "std::map<std::string,int > const &""'"); + } + arg1 = ptr; + } + result = (std::map<std::string,int > *)new std::map<std::string,int >((std::map<std::string,int > const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, SWIG_POINTER_NEW | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_LogLevelMap(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_LogLevelMap__SWIG_1(self, args); + } + if (argc == 1) { + int _v; + int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_std__lessTstd__string_t, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_LogLevelMap__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_LogLevelMap__SWIG_2(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_LogLevelMap'.\n Possible C/C++ prototypes are:\n"" std::map<(std::string,int)>(std::less<std::string > const &)\n"" std::map<(std::string,int)>()\n"" std::map<(std::string,int)>(std::map<std::string,int > const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_empty",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_empty" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (bool)((std::map<std::string,int > const *)arg1)->empty(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_size",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_size" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = ((std::map<std::string,int > const *)arg1)->size(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_clear",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_clear" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + (arg1)->clear(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int > *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap_swap",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_swap" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 ); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap_swap" "', argument " "2"" of type '" "std::map<std::string,int > &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap_swap" "', argument " "2"" of type '" "std::map<std::string,int > &""'"); + } + arg2 = reinterpret_cast< std::map<std::string,int > * >(argp2); + (arg1)->swap(*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_get_allocator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + SwigValueWrapper< std::allocator<std::pair<std::string const,int > > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_get_allocator",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_get_allocator" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = ((std::map<std::string,int > const *)arg1)->get_allocator(); + resultobj = SWIG_NewPointerObj((new std::map<std::string,int >::allocator_type(static_cast< const std::map<std::string,int >::allocator_type& >(result))), SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_begin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_begin" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_begin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_begin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_begin" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = ((std::map<std::string,int > const *)arg1)->begin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_begin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_LogLevelMap_begin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_LogLevelMap_begin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'LogLevelMap_begin'.\n Possible C/C++ prototypes are:\n"" begin(std::map<std::string,int > *)\n"" begin(std::map<std::string,int > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_end__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_end" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_end__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::const_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_end",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_end" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = ((std::map<std::string,int > const *)arg1)->end(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::const_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_end(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_LogLevelMap_end__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_LogLevelMap_end__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'LogLevelMap_end'.\n Possible C/C++ prototypes are:\n"" end(std::map<std::string,int > *)\n"" end(std::map<std::string,int > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_rbegin__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_rbegin" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_rbegin__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_rbegin",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_rbegin" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = ((std::map<std::string,int > const *)arg1)->rbegin(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_rbegin(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_LogLevelMap_rbegin__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_LogLevelMap_rbegin__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'LogLevelMap_rbegin'.\n Possible C/C++ prototypes are:\n"" rbegin(std::map<std::string,int > *)\n"" rbegin(std::map<std::string,int > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_rend__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_rend" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = (arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_rend__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::const_reverse_iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:LogLevelMap_rend",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_rend" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + result = ((std::map<std::string,int > const *)arg1)->rend(); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::const_reverse_iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_rend(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_LogLevelMap_rend__SWIG_0(self, args); + } + } + if (argc == 1) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_LogLevelMap_rend__SWIG_1(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'LogLevelMap_rend'.\n Possible C/C++ prototypes are:\n"" rend(std::map<std::string,int > *)\n"" rend(std::map<std::string,int > const *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_erase__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + std::map<std::string,int >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap_erase",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_erase" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap_erase" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap_erase" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + result = (arg1)->erase((std::map<std::string,int >::key_type const &)*arg2); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + std::map<std::string,int >::size_type result; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap_count",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_count" "', argument " "1"" of type '" "std::map<std::string,int > const *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap_count" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap_count" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + result = ((std::map<std::string,int > const *)arg1)->count((std::map<std::string,int >::key_type const &)*arg2); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_erase__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::iterator arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap_erase",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_erase" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "LogLevelMap_erase" "', argument " "2"" of type '" "std::map<std::string,int >::iterator""'"); + } else { + swig::PySwigIterator_T<std::map<std::string,int >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::map<std::string,int >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "LogLevelMap_erase" "', argument " "2"" of type '" "std::map<std::string,int >::iterator""'"); + } + } + (arg1)->erase(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_erase__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::iterator arg2 ; + std::map<std::string,int >::iterator arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + swig::PySwigIterator *iter2 = 0 ; + int res2 ; + swig::PySwigIterator *iter3 = 0 ; + int res3 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:LogLevelMap_erase",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_erase" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res2) || !iter2) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "LogLevelMap_erase" "', argument " "2"" of type '" "std::map<std::string,int >::iterator""'"); + } else { + swig::PySwigIterator_T<std::map<std::string,int >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::map<std::string,int >::iterator > *>(iter2); + if (iter_t) { + arg2 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "LogLevelMap_erase" "', argument " "2"" of type '" "std::map<std::string,int >::iterator""'"); + } + } + res3 = SWIG_ConvertPtr(obj2, SWIG_as_voidptrptr(&iter3), swig::PySwigIterator::descriptor(), 0); + if (!SWIG_IsOK(res3) || !iter3) { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "LogLevelMap_erase" "', argument " "3"" of type '" "std::map<std::string,int >::iterator""'"); + } else { + swig::PySwigIterator_T<std::map<std::string,int >::iterator > *iter_t = dynamic_cast<swig::PySwigIterator_T<std::map<std::string,int >::iterator > *>(iter3); + if (iter_t) { + arg3 = iter_t->get_current(); + } else { + SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "LogLevelMap_erase" "', argument " "3"" of type '" "std::map<std::string,int >::iterator""'"); + } + } + (arg1)->erase(arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_erase(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::map<std::string,int >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_LogLevelMap_erase__SWIG_1(self, args); + } + } + } + if (argc == 2) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_LogLevelMap_erase__SWIG_0(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = swig::asptr(argv[0], (std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::map<std::string,int >::iterator > *>(iter) != 0)); + if (_v) { + swig::PySwigIterator *iter = 0; + int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::PySwigIterator::descriptor(), 0); + _v = (SWIG_IsOK(res) && iter && (dynamic_cast<swig::PySwigIterator_T<std::map<std::string,int >::iterator > *>(iter) != 0)); + if (_v) { + return _wrap_LogLevelMap_erase__SWIG_2(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'LogLevelMap_erase'.\n Possible C/C++ prototypes are:\n"" erase(std::map<std::string,int > *,std::map<std::string,int >::key_type const &)\n"" erase(std::map<std::string,int > *,std::map<std::string,int >::iterator)\n"" erase(std::map<std::string,int > *,std::map<std::string,int >::iterator,std::map<std::string,int >::iterator)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_find(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + std::map<std::string,int >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap_find",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_find" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap_find" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap_find" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + result = (arg1)->find((std::map<std::string,int >::key_type const &)*arg2); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_lower_bound(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + std::map<std::string,int >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap_lower_bound",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_lower_bound" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap_lower_bound" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap_lower_bound" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + result = (arg1)->lower_bound((std::map<std::string,int >::key_type const &)*arg2); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_LogLevelMap_upper_bound(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + std::map<std::string,int >::key_type *arg2 = 0 ; + std::map<std::string,int >::iterator result; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:LogLevelMap_upper_bound",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogLevelMap_upper_bound" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "LogLevelMap_upper_bound" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "LogLevelMap_upper_bound" "', argument " "2"" of type '" "std::map<std::string,int >::key_type const &""'"); + } + arg2 = ptr; + } + result = (arg1)->upper_bound((std::map<std::string,int >::key_type const &)*arg2); + resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::map<std::string,int >::iterator & >(result)), + swig::PySwigIterator::descriptor(),SWIG_POINTER_OWN); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_LogLevelMap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::map<std::string,int > *arg1 = (std::map<std::string,int > *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_LogLevelMap",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_LogLevelMap" "', argument " "1"" of type '" "std::map<std::string,int > *""'"); + } + arg1 = reinterpret_cast< std::map<std::string,int > * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *LogLevelMap_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_Log_setLogLevel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string *arg1 = 0 ; + int arg2 ; + int res1 = SWIG_OLDOBJ ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Log_setLogLevel",&obj0,&obj1)) SWIG_fail; + { + std::string *ptr = (std::string *)0; + res1 = SWIG_AsPtr_std_string(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_setLogLevel" "', argument " "1"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_setLogLevel" "', argument " "1"" of type '" "std::string const &""'"); + } + arg1 = ptr; + } + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Log_setLogLevel" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + Rivet::Log::setLevel((std::string const &)*arg1,arg2); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setLevels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log::LevelMap *arg1 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_setLevels",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_std__mapTstd__string_const_int_std__lessTstd__string_const_t_std__allocatorTstd__pairTstd__string_const_const_int_t_t_t, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_setLevels" "', argument " "1"" of type '" "Rivet::Log::LevelMap &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_setLevels" "', argument " "1"" of type '" "Rivet::Log::LevelMap &""'"); + } + arg1 = reinterpret_cast< Rivet::Log::LevelMap * >(argp1); + Rivet::Log::setLevels(*arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setShowTimestamp__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + bool arg1 ; + bool val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_setShowTimestamp",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_bool(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "Log_setShowTimestamp" "', argument " "1"" of type '" "bool""'"); + } + arg1 = static_cast< bool >(val1); + Rivet::Log::setShowTimestamp(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setShowTimestamp__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + + if (!PyArg_ParseTuple(args,(char *)":Log_setShowTimestamp")) SWIG_fail; + Rivet::Log::setShowTimestamp(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setShowTimestamp(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_Log_setShowTimestamp__SWIG_1(self, args); + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_bool(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_Log_setShowTimestamp__SWIG_0(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'Log_setShowTimestamp'.\n Possible C/C++ prototypes are:\n"" setShowTimestamp(bool const)\n"" Rivet::Log::setShowTimestamp()\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setShowLevel__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + bool arg1 ; + bool val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_setShowLevel",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_bool(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "Log_setShowLevel" "', argument " "1"" of type '" "bool""'"); + } + arg1 = static_cast< bool >(val1); + Rivet::Log::setShowLevel(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setShowLevel__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + + if (!PyArg_ParseTuple(args,(char *)":Log_setShowLevel")) SWIG_fail; + Rivet::Log::setShowLevel(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setShowLevel(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_Log_setShowLevel__SWIG_1(self, args); + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_bool(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_Log_setShowLevel__SWIG_0(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'Log_setShowLevel'.\n Possible C/C++ prototypes are:\n"" setShowLevel(bool const)\n"" Rivet::Log::setShowLevel()\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setShowLoggerName__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + bool arg1 ; + bool val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_setShowLoggerName",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_bool(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "Log_setShowLoggerName" "', argument " "1"" of type '" "bool""'"); + } + arg1 = static_cast< bool >(val1); + Rivet::Log::setShowLoggerName(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setShowLoggerName__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + + if (!PyArg_ParseTuple(args,(char *)":Log_setShowLoggerName")) SWIG_fail; + Rivet::Log::setShowLoggerName(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setShowLoggerName(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_Log_setShowLoggerName__SWIG_1(self, args); + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_bool(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_Log_setShowLoggerName__SWIG_0(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'Log_setShowLoggerName'.\n Possible C/C++ prototypes are:\n"" setShowLoggerName(bool const)\n"" Rivet::Log::setShowLoggerName()\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setUseColors__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + bool arg1 ; + bool val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_setUseColors",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_bool(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "Log_setUseColors" "', argument " "1"" of type '" "bool""'"); + } + arg1 = static_cast< bool >(val1); + Rivet::Log::setUseColors(arg1); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setUseColors__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + + if (!PyArg_ParseTuple(args,(char *)":Log_setUseColors")) SWIG_fail; + Rivet::Log::setUseColors(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setUseColors(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[2]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 1); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_Log_setUseColors__SWIG_1(self, args); + } + if (argc == 1) { + int _v; + { + int res = SWIG_AsVal_bool(argv[0], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_Log_setUseColors__SWIG_0(self, args); + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'Log_setUseColors'.\n Possible C/C++ prototypes are:\n"" setUseColors(bool const)\n"" Rivet::Log::setUseColors()\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_getLog(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string *arg1 = 0 ; + Rivet::Log *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_getLog",&obj0)) SWIG_fail; + { + std::string *ptr = (std::string *)0; + res1 = SWIG_AsPtr_std_string(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_getLog" "', argument " "1"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_getLog" "', argument " "1"" of type '" "std::string const &""'"); + } + arg1 = ptr; + } + { + Rivet::Log &_result_ref = Rivet::Log::getLog((std::string const &)*arg1); + result = (Rivet::Log *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_getLevel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + int result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_getLevel",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_getLevel" "', argument " "1"" of type '" "Rivet::Log const *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + result = (int)((Rivet::Log const *)arg1)->getLevel(); + resultobj = SWIG_From_int(static_cast< int >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setLevel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + int arg2 ; + Rivet::Log *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Log_setLevel",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_setLevel" "', argument " "1"" of type '" "Rivet::Log *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Log_setLevel" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + { + Rivet::Log &_result_ref = (arg1)->setLevel(arg2); + result = (Rivet::Log *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__Log, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_getLevelFromName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string *arg1 = 0 ; + Rivet::Log::Level result; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_getLevelFromName",&obj0)) SWIG_fail; + { + std::string *ptr = (std::string *)0; + res1 = SWIG_AsPtr_std_string(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_getLevelFromName" "', argument " "1"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_getLevelFromName" "', argument " "1"" of type '" "std::string const &""'"); + } + arg1 = ptr; + } + result = (Rivet::Log::Level)Rivet::Log::getLevelFromName((std::string const &)*arg1); + resultobj = SWIG_From_int(static_cast< int >(result)); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_getLevelName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + int arg1 ; + std::string result; + int val1 ; + int ecode1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_getLevelName",&obj0)) SWIG_fail; + ecode1 = SWIG_AsVal_int(obj0, &val1); + if (!SWIG_IsOK(ecode1)) { + SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "Log_getLevelName" "', argument " "1"" of type '" "int""'"); + } + arg1 = static_cast< int >(val1); + result = Rivet::Log::getLevelName(arg1); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_getName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log_getName",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_getName" "', argument " "1"" of type '" "Rivet::Log const *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + result = ((Rivet::Log const *)arg1)->getName(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_setName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + std::string *arg2 = 0 ; + Rivet::Log *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Log_setName",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_setName" "', argument " "1"" of type '" "Rivet::Log *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Log_setName" "', argument " "2"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_setName" "', argument " "2"" of type '" "std::string const &""'"); + } + arg2 = ptr; + } + { + Rivet::Log &_result_ref = (arg1)->setName((std::string const &)*arg2); + result = (Rivet::Log *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_isActive(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + int arg2 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Log_isActive",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_isActive" "', argument " "1"" of type '" "Rivet::Log const *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Log_isActive" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + result = (bool)((Rivet::Log const *)arg1)->isActive(arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_trace(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + std::string *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Log_trace",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_trace" "', argument " "1"" of type '" "Rivet::Log *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Log_trace" "', argument " "2"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_trace" "', argument " "2"" of type '" "std::string const &""'"); + } + arg2 = ptr; + } + (arg1)->trace((std::string const &)*arg2); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_debug(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + std::string *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Log_debug",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_debug" "', argument " "1"" of type '" "Rivet::Log *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Log_debug" "', argument " "2"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_debug" "', argument " "2"" of type '" "std::string const &""'"); + } + arg2 = ptr; + } + (arg1)->debug((std::string const &)*arg2); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_info(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + std::string *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Log_info",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_info" "', argument " "1"" of type '" "Rivet::Log *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Log_info" "', argument " "2"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_info" "', argument " "2"" of type '" "std::string const &""'"); + } + arg2 = ptr; + } + (arg1)->info((std::string const &)*arg2); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_warn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + std::string *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Log_warn",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_warn" "', argument " "1"" of type '" "Rivet::Log *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Log_warn" "', argument " "2"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_warn" "', argument " "2"" of type '" "std::string const &""'"); + } + arg2 = ptr; + } + (arg1)->warn((std::string const &)*arg2); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log_error(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + std::string *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Log_error",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log_error" "', argument " "1"" of type '" "Rivet::Log *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Log_error" "', argument " "2"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Log_error" "', argument " "2"" of type '" "std::string const &""'"); + } + arg2 = ptr; + } + (arg1)->error((std::string const &)*arg2); + resultobj = SWIG_Py_Void(); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Log__nostream_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + std::ostream *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Log__nostream_get",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Log__nostream_get" "', argument " "1"" of type '" "Rivet::Log *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + result = (std::ostream *)(std::ostream *) ((arg1)->_nostream); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__ostream, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_Log(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = (Rivet::Log *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_Log",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Log, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Log" "', argument " "1"" of type '" "Rivet::Log *""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *Log_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_Rivet__Log, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap___lshift____SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Log *arg1 = 0 ; + int arg2 ; + std::ostream *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:__lshift__",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_Rivet__Log, 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "__lshift__" "', argument " "1"" of type '" "Rivet::Log &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "__lshift__" "', argument " "1"" of type '" "Rivet::Log &""'"); + } + arg1 = reinterpret_cast< Rivet::Log * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "__lshift__" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + { + std::ostream &_result_ref = Rivet::operator <<(*arg1,arg2); + result = (std::ostream *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__ostream, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap___lshift__(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[3]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 2); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_std__ostream, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_std__pairTlong_long_t, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap___lshift____SWIG_1(self, args); + } + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_std__ostream, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap___lshift____SWIG_0(self, args); + } + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Rivet__Log, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap___lshift____SWIG_2(self, args); + } + } + } + +fail: + Py_INCREF(Py_NotImplemented); + return Py_NotImplemented; +} + + +SWIGINTERN PyObject *_wrap_version(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string result; + + if (!PyArg_ParseTuple(args,(char *)":version")) SWIG_fail; + result = Rivet::version(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_Event(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Event *arg1 = (Rivet::Event *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_Event",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Event, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Event" "', argument " "1"" of type '" "Rivet::Event *""'"); + } + arg1 = reinterpret_cast< Rivet::Event * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *Event_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_Rivet__Event, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_delete_Particle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Particle *arg1 = (Rivet::Particle *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_Particle",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Particle, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Particle" "', argument " "1"" of type '" "Rivet::Particle *""'"); + } + arg1 = reinterpret_cast< Rivet::Particle * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *Particle_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_Rivet__Particle, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_beams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Event *arg1 = 0 ; + SwigValueWrapper< std::pair<Rivet::Particle,Rivet::Particle > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:beams",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_Rivet__Event, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "beams" "', argument " "1"" of type '" "Rivet::Event const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "beams" "', argument " "1"" of type '" "Rivet::Event const &""'"); + } + arg1 = reinterpret_cast< Rivet::Event * >(argp1); + result = Rivet::beams((Rivet::Event const &)*arg1); + resultobj = SWIG_NewPointerObj((new Rivet::ParticlePair(static_cast< const Rivet::ParticlePair& >(result))), SWIGTYPE_p_std__pairTRivet__Particle_Rivet__Particle_t, SWIG_POINTER_OWN | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_beamIds(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + HepMC::GenEvent *arg1 = 0 ; + Rivet::BeamPair result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:beamIds",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_HepMC__GenEvent, 0 | 0); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "beamIds" "', argument " "1"" of type '" "HepMC::GenEvent const &""'"); + } + if (!argp1) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "beamIds" "', argument " "1"" of type '" "HepMC::GenEvent const &""'"); + } + arg1 = reinterpret_cast< HepMC::GenEvent * >(argp1); + result = Rivet::beamIds((HepMC::GenEvent const &)*arg1); + resultobj = swig::from(static_cast< std::pair<long,long > >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_name(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_name",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_name" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->name(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_spiresId(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_spiresId",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_spiresId" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->spiresId(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_summary(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_summary",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_summary" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->summary(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_description(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_description",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_description" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->description(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_runInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_runInfo",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_runInfo" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->runInfo(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_experiment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_experiment",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_experiment" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->experiment(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_collider(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_collider",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_collider" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->collider(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_year(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_year",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_year" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->year(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_status(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_status",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_status" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->status(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_authors(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::vector<std::string,std::allocator<std::string > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_authors",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_authors" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->authors(); + resultobj = swig::from(static_cast< std::vector<std::string,std::allocator<std::string > > >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_references(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + std::vector<std::string,std::allocator<std::string > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_references",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_references" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = ((Rivet::Analysis const *)arg1)->references(); + resultobj = swig::from(static_cast< std::vector<std::string,std::allocator<std::string > > >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_beams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + Rivet::BeamPair *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_beams",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_beams" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + { + Rivet::BeamPair const &_result_ref = ((Rivet::Analysis const *)arg1)->beams(); + result = (Rivet::BeamPair *) &_result_ref; + } + resultobj = swig::from(static_cast< std::pair<long,long > >(*result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_requiredBeams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + Rivet::BeamPair *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_requiredBeams",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_requiredBeams" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + { + Rivet::BeamPair const &_result_ref = ((Rivet::Analysis const *)arg1)->requiredBeams(); + result = (Rivet::BeamPair *) &_result_ref; + } + resultobj = swig::from(static_cast< std::pair<long,long > >(*result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_isCompatible__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + Rivet::ParticleName *arg2 = 0 ; + Rivet::ParticleName *arg3 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 ; + Rivet::ParticleName temp2 ; + int val3 ; + int ecode3 ; + Rivet::ParticleName temp3 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:Analysis_isCompatible",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_isCompatible" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + ecode2 = SWIG_AsVal_int (obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Analysis_isCompatible" "', argument " "2"" of type '" "Rivet::ParticleName const &""'"); + } else { + temp2 = static_cast< Rivet::ParticleName >(val2); + arg2 = &temp2; + } + ecode3 = SWIG_AsVal_int (obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Analysis_isCompatible" "', argument " "3"" of type '" "Rivet::ParticleName const &""'"); + } else { + temp3 = static_cast< Rivet::ParticleName >(val3); + arg3 = &temp3; + } + result = (bool)((Rivet::Analysis const *)arg1)->isCompatible((Rivet::ParticleName const &)*arg2,(Rivet::ParticleName const &)*arg3); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_isCompatible__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + Rivet::BeamPair *arg2 = 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:Analysis_isCompatible",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_isCompatible" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + { + std::pair<long,long > *ptr = (std::pair<long,long > *)0; + res2 = swig::asptr(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Analysis_isCompatible" "', argument " "2"" of type '" "Rivet::BeamPair const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Analysis_isCompatible" "', argument " "2"" of type '" "Rivet::BeamPair const &""'"); + } + arg2 = ptr; + } + result = (bool)((Rivet::Analysis const *)arg1)->isCompatible((Rivet::BeamPair const &)*arg2); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_isCompatible(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Rivet__Analysis, 0); + _v = SWIG_CheckState(res); + if (_v) { + int res = swig::asptr(argv[1], (std::pair<long,long >**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_Analysis_isCompatible__SWIG_1(self, args); + } + } + } + if (argc == 3) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Rivet__Analysis, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_Analysis_isCompatible__SWIG_0(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'Analysis_isCompatible'.\n Possible C/C++ prototypes are:\n"" isCompatible(Rivet::Analysis const *,Rivet::ParticleName const &,Rivet::ParticleName const &)\n"" isCompatible(Rivet::Analysis const *,Rivet::BeamPair const &)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_Analysis_needsCrossSection(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:Analysis_needsCrossSection",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Analysis_needsCrossSection" "', argument " "1"" of type '" "Rivet::Analysis const *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + result = (bool)((Rivet::Analysis const *)arg1)->needsCrossSection(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_Analysis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::Analysis *arg1 = (Rivet::Analysis *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_Analysis",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__Analysis, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Analysis" "', argument " "1"" of type '" "Rivet::Analysis *""'"); + } + arg1 = reinterpret_cast< Rivet::Analysis * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *Analysis_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_Rivet__Analysis, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_new_AnalysisHandler__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string arg1 ; + std::string arg2 ; + Rivet::HistoFormat arg3 ; + Rivet::AnalysisHandler *result = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:new_AnalysisHandler",&obj0,&obj1,&obj2)) SWIG_fail; + { + std::string *ptr = (std::string *)0; + int res = SWIG_AsPtr_std_string(obj0, &ptr); + if (!SWIG_IsOK(res) || !ptr) { + SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "new_AnalysisHandler" "', argument " "1"" of type '" "std::string""'"); + } + arg1 = *ptr; + if (SWIG_IsNewObj(res)) delete ptr; + } + { + std::string *ptr = (std::string *)0; + int res = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res) || !ptr) { + SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "new_AnalysisHandler" "', argument " "2"" of type '" "std::string""'"); + } + arg2 = *ptr; + if (SWIG_IsNewObj(res)) delete ptr; + } + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_AnalysisHandler" "', argument " "3"" of type '" "Rivet::HistoFormat""'"); + } + arg3 = static_cast< Rivet::HistoFormat >(val3); + result = (Rivet::AnalysisHandler *)new Rivet::AnalysisHandler(arg1,arg2,arg3); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_AnalysisHandler__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string arg1 ; + std::string arg2 ; + Rivet::AnalysisHandler *result = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:new_AnalysisHandler",&obj0,&obj1)) SWIG_fail; + { + std::string *ptr = (std::string *)0; + int res = SWIG_AsPtr_std_string(obj0, &ptr); + if (!SWIG_IsOK(res) || !ptr) { + SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "new_AnalysisHandler" "', argument " "1"" of type '" "std::string""'"); + } + arg1 = *ptr; + if (SWIG_IsNewObj(res)) delete ptr; + } + { + std::string *ptr = (std::string *)0; + int res = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res) || !ptr) { + SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "new_AnalysisHandler" "', argument " "2"" of type '" "std::string""'"); + } + arg2 = *ptr; + if (SWIG_IsNewObj(res)) delete ptr; + } + result = (Rivet::AnalysisHandler *)new Rivet::AnalysisHandler(arg1,arg2); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_AnalysisHandler__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string arg1 ; + Rivet::AnalysisHandler *result = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:new_AnalysisHandler",&obj0)) SWIG_fail; + { + std::string *ptr = (std::string *)0; + int res = SWIG_AsPtr_std_string(obj0, &ptr); + if (!SWIG_IsOK(res) || !ptr) { + SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "new_AnalysisHandler" "', argument " "1"" of type '" "std::string""'"); + } + arg1 = *ptr; + if (SWIG_IsNewObj(res)) delete ptr; + } + result = (Rivet::AnalysisHandler *)new Rivet::AnalysisHandler(arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_AnalysisHandler__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_AnalysisHandler")) SWIG_fail; + result = (Rivet::AnalysisHandler *)new Rivet::AnalysisHandler(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_AnalysisHandler(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 0) { + return _wrap_new_AnalysisHandler__SWIG_3(self, args); + } + if (argc == 1) { + int _v; + int res = SWIG_AsPtr_std_string(argv[0], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_AnalysisHandler__SWIG_2(self, args); + } + } + if (argc == 2) { + int _v; + int res = SWIG_AsPtr_std_string(argv[0], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_new_AnalysisHandler__SWIG_1(self, args); + } + } + } + if (argc == 3) { + int _v; + int res = SWIG_AsPtr_std_string(argv[0], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0)); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_new_AnalysisHandler__SWIG_0(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_AnalysisHandler'.\n Possible C/C++ prototypes are:\n"" Rivet::AnalysisHandler(std::string,std::string,Rivet::HistoFormat)\n"" Rivet::AnalysisHandler(std::string,std::string)\n"" Rivet::AnalysisHandler(std::string)\n"" Rivet::AnalysisHandler()\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_runName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + std::string result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:AnalysisHandler_runName",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_runName" "', argument " "1"" of type '" "Rivet::AnalysisHandler const *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + result = ((Rivet::AnalysisHandler const *)arg1)->runName(); + resultobj = SWIG_From_std_string(static_cast< std::string >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_numEvents(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + size_t result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:AnalysisHandler_numEvents",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_numEvents" "', argument " "1"" of type '" "Rivet::AnalysisHandler const *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + result = ((Rivet::AnalysisHandler const *)arg1)->numEvents(); + resultobj = SWIG_From_size_t(static_cast< size_t >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_sumOfWeights(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + double result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:AnalysisHandler_sumOfWeights",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_sumOfWeights" "', argument " "1"" of type '" "Rivet::AnalysisHandler const *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + result = (double)((Rivet::AnalysisHandler const *)arg1)->sumOfWeights(); + resultobj = SWIG_From_double(static_cast< double >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_analysisNames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + std::vector<std::string,std::allocator<std::string > > result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:AnalysisHandler_analysisNames",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_analysisNames" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + result = (arg1)->analysisNames(); + resultobj = swig::from(static_cast< std::vector<std::string,std::allocator<std::string > > >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_addAnalysis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + std::string *arg2 = 0 ; + Rivet::AnalysisHandler *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:AnalysisHandler_addAnalysis",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_addAnalysis" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "AnalysisHandler_addAnalysis" "', argument " "2"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "AnalysisHandler_addAnalysis" "', argument " "2"" of type '" "std::string const &""'"); + } + arg2 = ptr; + } + { + Rivet::AnalysisHandler &_result_ref = (arg1)->addAnalysis((std::string const &)*arg2); + result = (Rivet::AnalysisHandler *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_addAnalyses(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + std::vector<std::string,std::allocator<std::string > > *arg2 = 0 ; + Rivet::AnalysisHandler *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:AnalysisHandler_addAnalyses",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_addAnalyses" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + { + std::vector<std::string,std::allocator<std::string > > *ptr = (std::vector<std::string,std::allocator<std::string > > *)0; + res2 = swig::asptr(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "AnalysisHandler_addAnalyses" "', argument " "2"" of type '" "std::vector<std::string,std::allocator<std::string > > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "AnalysisHandler_addAnalyses" "', argument " "2"" of type '" "std::vector<std::string,std::allocator<std::string > > const &""'"); + } + arg2 = ptr; + } + { + Rivet::AnalysisHandler &_result_ref = (arg1)->addAnalyses((std::vector<std::string,std::allocator<std::string > > const &)*arg2); + result = (Rivet::AnalysisHandler *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_removeAnalysis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + std::string *arg2 = 0 ; + Rivet::AnalysisHandler *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:AnalysisHandler_removeAnalysis",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_removeAnalysis" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + { + std::string *ptr = (std::string *)0; + res2 = SWIG_AsPtr_std_string(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "AnalysisHandler_removeAnalysis" "', argument " "2"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "AnalysisHandler_removeAnalysis" "', argument " "2"" of type '" "std::string const &""'"); + } + arg2 = ptr; + } + { + Rivet::AnalysisHandler &_result_ref = (arg1)->removeAnalysis((std::string const &)*arg2); + result = (Rivet::AnalysisHandler *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_removeAnalyses(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + std::vector<std::string,std::allocator<std::string > > *arg2 = 0 ; + Rivet::AnalysisHandler *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:AnalysisHandler_removeAnalyses",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_removeAnalyses" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + { + std::vector<std::string,std::allocator<std::string > > *ptr = (std::vector<std::string,std::allocator<std::string > > *)0; + res2 = swig::asptr(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "AnalysisHandler_removeAnalyses" "', argument " "2"" of type '" "std::vector<std::string,std::allocator<std::string > > const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "AnalysisHandler_removeAnalyses" "', argument " "2"" of type '" "std::vector<std::string,std::allocator<std::string > > const &""'"); + } + arg2 = ptr; + } + { + Rivet::AnalysisHandler &_result_ref = (arg1)->removeAnalyses((std::vector<std::string,std::allocator<std::string > > const &)*arg2); + result = (Rivet::AnalysisHandler *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_removeIncompatibleAnalyses(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + Rivet::BeamPair *arg2 = 0 ; + Rivet::AnalysisHandler *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + int res2 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:AnalysisHandler_removeIncompatibleAnalyses",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_removeIncompatibleAnalyses" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + { + std::pair<long,long > *ptr = (std::pair<long,long > *)0; + res2 = swig::asptr(obj1, &ptr); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "AnalysisHandler_removeIncompatibleAnalyses" "', argument " "2"" of type '" "Rivet::BeamPair const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "AnalysisHandler_removeIncompatibleAnalyses" "', argument " "2"" of type '" "Rivet::BeamPair const &""'"); + } + arg2 = ptr; + } + { + Rivet::AnalysisHandler &_result_ref = (arg1)->removeIncompatibleAnalyses((Rivet::BeamPair const &)*arg2); + result = (Rivet::AnalysisHandler *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (SWIG_IsNewObj(res2)) delete arg2; + return resultobj; +fail: + if (SWIG_IsNewObj(res2)) delete arg2; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_init__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + int arg2 ; + int arg3 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + int val3 ; + int ecode3 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OOO:AnalysisHandler_init",&obj0,&obj1,&obj2)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_init" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "AnalysisHandler_init" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + ecode3 = SWIG_AsVal_int(obj2, &val3); + if (!SWIG_IsOK(ecode3)) { + SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "AnalysisHandler_init" "', argument " "3"" of type '" "int""'"); + } + arg3 = static_cast< int >(val3); + (arg1)->init(arg2,arg3); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_init__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + int arg2 ; + void *argp1 = 0 ; + int res1 = 0 ; + int val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:AnalysisHandler_init",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_init" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + ecode2 = SWIG_AsVal_int(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "AnalysisHandler_init" "', argument " "2"" of type '" "int""'"); + } + arg2 = static_cast< int >(val2); + (arg1)->init(arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_init__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:AnalysisHandler_init",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_init" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + (arg1)->init(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_init(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[4]; + int ii; + + if (!PyTuple_Check(args)) SWIG_fail; + argc = (int)PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 3); ii++) { + argv[ii] = PyTuple_GET_ITEM(args,ii); + } + if (argc == 1) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Rivet__AnalysisHandler, 0); + _v = SWIG_CheckState(res); + if (_v) { + return _wrap_AnalysisHandler_init__SWIG_2(self, args); + } + } + if (argc == 2) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Rivet__AnalysisHandler, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_AnalysisHandler_init__SWIG_1(self, args); + } + } + } + if (argc == 3) { + int _v; + void *vptr = 0; + int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Rivet__AnalysisHandler, 0); + _v = SWIG_CheckState(res); + if (_v) { + { + int res = SWIG_AsVal_int(argv[1], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + { + int res = SWIG_AsVal_int(argv[2], NULL); + _v = SWIG_CheckState(res); + } + if (_v) { + return _wrap_AnalysisHandler_init__SWIG_0(self, args); + } + } + } + } + +fail: + SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'AnalysisHandler_init'.\n Possible C/C++ prototypes are:\n"" init(Rivet::AnalysisHandler *,int,int)\n"" init(Rivet::AnalysisHandler *,int)\n"" init(Rivet::AnalysisHandler *)\n"); + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_analyze(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + HepMC::GenEvent *arg2 = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + void *argp2 = 0 ; + int res2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:AnalysisHandler_analyze",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_analyze" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_HepMC__GenEvent, 0 | 0); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "AnalysisHandler_analyze" "', argument " "2"" of type '" "HepMC::GenEvent const &""'"); + } + if (!argp2) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "AnalysisHandler_analyze" "', argument " "2"" of type '" "HepMC::GenEvent const &""'"); + } + arg2 = reinterpret_cast< HepMC::GenEvent * >(argp2); + (arg1)->analyze((HepMC::GenEvent const &)*arg2); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_finalize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:AnalysisHandler_finalize",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_finalize" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + (arg1)->finalize(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_needCrossSection(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + bool result; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:AnalysisHandler_needCrossSection",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_needCrossSection" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + result = (bool)(arg1)->needCrossSection(); + resultobj = SWIG_From_bool(static_cast< bool >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_setCrossSection(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + double arg2 ; + Rivet::AnalysisHandler *result = 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + double val2 ; + int ecode2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:AnalysisHandler_setCrossSection",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_setCrossSection" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + ecode2 = SWIG_AsVal_double(obj1, &val2); + if (!SWIG_IsOK(ecode2)) { + SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "AnalysisHandler_setCrossSection" "', argument " "2"" of type '" "double""'"); + } + arg2 = static_cast< double >(val2); + { + Rivet::AnalysisHandler &_result_ref = (arg1)->setCrossSection(arg2); + result = (Rivet::AnalysisHandler *) &_result_ref; + } + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisHandler_commitData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:AnalysisHandler_commitData",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, 0 | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisHandler_commitData" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + (arg1)->commitData(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_AnalysisHandler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisHandler *arg1 = (Rivet::AnalysisHandler *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_AnalysisHandler",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisHandler, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_AnalysisHandler" "', argument " "1"" of type '" "Rivet::AnalysisHandler *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisHandler * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *AnalysisHandler_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_Rivet__AnalysisHandler, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +SWIGINTERN PyObject *_wrap_AnalysisLoader_getAnalysis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::string *arg1 = 0 ; + Rivet::Analysis *result = 0 ; + int res1 = SWIG_OLDOBJ ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:AnalysisLoader_getAnalysis",&obj0)) SWIG_fail; + { + std::string *ptr = (std::string *)0; + res1 = SWIG_AsPtr_std_string(obj0, &ptr); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AnalysisLoader_getAnalysis" "', argument " "1"" of type '" "std::string const &""'"); + } + if (!ptr) { + SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "AnalysisLoader_getAnalysis" "', argument " "1"" of type '" "std::string const &""'"); + } + arg1 = ptr; + } + result = (Rivet::Analysis *)Rivet::AnalysisLoader::getAnalysis((std::string const &)*arg1); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__Analysis, 0 | 0 ); + if (SWIG_IsNewObj(res1)) delete arg1; + return resultobj; +fail: + if (SWIG_IsNewObj(res1)) delete arg1; + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisLoader_closeAnalysisBuilders(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + + if (!PyArg_ParseTuple(args,(char *)":AnalysisLoader_closeAnalysisBuilders")) SWIG_fail; + Rivet::AnalysisLoader::closeAnalysisBuilders(); + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_AnalysisLoader_allAnalysisNames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + std::vector<std::string,std::allocator<std::string > > result; + + if (!PyArg_ParseTuple(args,(char *)":AnalysisLoader_allAnalysisNames")) SWIG_fail; + result = Rivet_AnalysisLoader_allAnalysisNames(); + resultobj = swig::from(static_cast< std::vector<std::string,std::allocator<std::string > > >(result)); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_new_AnalysisLoader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisLoader *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)":new_AnalysisLoader")) SWIG_fail; + result = (Rivet::AnalysisLoader *)new Rivet::AnalysisLoader(); + resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Rivet__AnalysisLoader, SWIG_POINTER_NEW | 0 ); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *_wrap_delete_AnalysisLoader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; + Rivet::AnalysisLoader *arg1 = (Rivet::AnalysisLoader *) 0 ; + void *argp1 = 0 ; + int res1 = 0 ; + PyObject * obj0 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O:delete_AnalysisLoader",&obj0)) SWIG_fail; + res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Rivet__AnalysisLoader, SWIG_POINTER_DISOWN | 0 ); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_AnalysisLoader" "', argument " "1"" of type '" "Rivet::AnalysisLoader *""'"); + } + arg1 = reinterpret_cast< Rivet::AnalysisLoader * >(argp1); + delete arg1; + + resultobj = SWIG_Py_Void(); + return resultobj; +fail: + return NULL; +} + + +SWIGINTERN PyObject *AnalysisLoader_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O|swigregister", &obj)) return NULL; + SWIG_TypeNewClientData(SWIGTYPE_p_Rivet__AnalysisLoader, SWIG_NewClientData(obj)); + return SWIG_Py_Void(); +} + +static PyMethodDef SwigMethods[] = { + { (char *)"delete_PySwigIterator", _wrap_delete_PySwigIterator, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_value", _wrap_PySwigIterator_value, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_incr", _wrap_PySwigIterator_incr, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_decr", _wrap_PySwigIterator_decr, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_distance", _wrap_PySwigIterator_distance, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_equal", _wrap_PySwigIterator_equal, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_copy", _wrap_PySwigIterator_copy, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_next", _wrap_PySwigIterator_next, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_previous", _wrap_PySwigIterator_previous, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_advance", _wrap_PySwigIterator_advance, METH_VARARGS, NULL}, + { (char *)"PySwigIterator___eq__", _wrap_PySwigIterator___eq__, METH_VARARGS, NULL}, + { (char *)"PySwigIterator___ne__", _wrap_PySwigIterator___ne__, METH_VARARGS, NULL}, + { (char *)"PySwigIterator___iadd__", _wrap_PySwigIterator___iadd__, METH_VARARGS, NULL}, + { (char *)"PySwigIterator___isub__", _wrap_PySwigIterator___isub__, METH_VARARGS, NULL}, + { (char *)"PySwigIterator___add__", _wrap_PySwigIterator___add__, METH_VARARGS, NULL}, + { (char *)"PySwigIterator___sub__", _wrap_PySwigIterator___sub__, METH_VARARGS, NULL}, + { (char *)"PySwigIterator_swigregister", PySwigIterator_swigregister, METH_VARARGS, NULL}, + { (char *)"new_FourVector", _wrap_new_FourVector, METH_VARARGS, NULL}, + { (char *)"FourVector_swap", _wrap_FourVector_swap, METH_VARARGS, NULL}, + { (char *)"FourVector_px", _wrap_FourVector_px, METH_VARARGS, NULL}, + { (char *)"FourVector_py", _wrap_FourVector_py, METH_VARARGS, NULL}, + { (char *)"FourVector_pz", _wrap_FourVector_pz, METH_VARARGS, NULL}, + { (char *)"FourVector_e", _wrap_FourVector_e, METH_VARARGS, NULL}, + { (char *)"FourVector_x", _wrap_FourVector_x, METH_VARARGS, NULL}, + { (char *)"FourVector_y", _wrap_FourVector_y, METH_VARARGS, NULL}, + { (char *)"FourVector_z", _wrap_FourVector_z, METH_VARARGS, NULL}, + { (char *)"FourVector_t", _wrap_FourVector_t, METH_VARARGS, NULL}, + { (char *)"FourVector_m2", _wrap_FourVector_m2, METH_VARARGS, NULL}, + { (char *)"FourVector_m", _wrap_FourVector_m, METH_VARARGS, NULL}, + { (char *)"FourVector_perp2", _wrap_FourVector_perp2, METH_VARARGS, NULL}, + { (char *)"FourVector_perp", _wrap_FourVector_perp, METH_VARARGS, NULL}, + { (char *)"FourVector_mag", _wrap_FourVector_mag, METH_VARARGS, NULL}, + { (char *)"FourVector_theta", _wrap_FourVector_theta, METH_VARARGS, NULL}, + { (char *)"FourVector_phi", _wrap_FourVector_phi, METH_VARARGS, NULL}, + { (char *)"FourVector_rho", _wrap_FourVector_rho, METH_VARARGS, NULL}, + { (char *)"FourVector___eq__", _wrap_FourVector___eq__, METH_VARARGS, NULL}, + { (char *)"FourVector___ne__", _wrap_FourVector___ne__, METH_VARARGS, NULL}, + { (char *)"FourVector_pseudoRapidity", _wrap_FourVector_pseudoRapidity, METH_VARARGS, NULL}, + { (char *)"FourVector_eta", _wrap_FourVector_eta, METH_VARARGS, NULL}, + { (char *)"FourVector_set", _wrap_FourVector_set, METH_VARARGS, NULL}, + { (char *)"FourVector_setX", _wrap_FourVector_setX, METH_VARARGS, NULL}, + { (char *)"FourVector_setY", _wrap_FourVector_setY, METH_VARARGS, NULL}, + { (char *)"FourVector_setZ", _wrap_FourVector_setZ, METH_VARARGS, NULL}, + { (char *)"FourVector_setT", _wrap_FourVector_setT, METH_VARARGS, NULL}, + { (char *)"FourVector_setPx", _wrap_FourVector_setPx, METH_VARARGS, NULL}, + { (char *)"FourVector_setPy", _wrap_FourVector_setPy, METH_VARARGS, NULL}, + { (char *)"FourVector_setPz", _wrap_FourVector_setPz, METH_VARARGS, NULL}, + { (char *)"FourVector_setE", _wrap_FourVector_setE, METH_VARARGS, NULL}, + { (char *)"FourVector___str__", _wrap_FourVector___str__, METH_VARARGS, NULL}, + { (char *)"delete_FourVector", _wrap_delete_FourVector, METH_VARARGS, NULL}, + { (char *)"FourVector_swigregister", FourVector_swigregister, METH_VARARGS, NULL}, + { (char *)"new_ThreeVector", _wrap_new_ThreeVector, METH_VARARGS, NULL}, + { (char *)"ThreeVector_swap", _wrap_ThreeVector_swap, METH_VARARGS, NULL}, + { (char *)"ThreeVector_x", _wrap_ThreeVector_x, METH_VARARGS, NULL}, + { (char *)"ThreeVector_y", _wrap_ThreeVector_y, METH_VARARGS, NULL}, + { (char *)"ThreeVector_z", _wrap_ThreeVector_z, METH_VARARGS, NULL}, + { (char *)"ThreeVector_setX", _wrap_ThreeVector_setX, METH_VARARGS, NULL}, + { (char *)"ThreeVector_setY", _wrap_ThreeVector_setY, METH_VARARGS, NULL}, + { (char *)"ThreeVector_setZ", _wrap_ThreeVector_setZ, METH_VARARGS, NULL}, + { (char *)"ThreeVector_set", _wrap_ThreeVector_set, METH_VARARGS, NULL}, + { (char *)"ThreeVector_phi", _wrap_ThreeVector_phi, METH_VARARGS, NULL}, + { (char *)"ThreeVector_theta", _wrap_ThreeVector_theta, METH_VARARGS, NULL}, + { (char *)"ThreeVector_r", _wrap_ThreeVector_r, METH_VARARGS, NULL}, + { (char *)"ThreeVector_mag", _wrap_ThreeVector_mag, METH_VARARGS, NULL}, + { (char *)"ThreeVector_setPhi", _wrap_ThreeVector_setPhi, METH_VARARGS, NULL}, + { (char *)"ThreeVector_setTheta", _wrap_ThreeVector_setTheta, METH_VARARGS, NULL}, + { (char *)"ThreeVector_perp2", _wrap_ThreeVector_perp2, METH_VARARGS, NULL}, + { (char *)"ThreeVector_perp", _wrap_ThreeVector_perp, METH_VARARGS, NULL}, + { (char *)"ThreeVector___eq__", _wrap_ThreeVector___eq__, METH_VARARGS, NULL}, + { (char *)"ThreeVector___ne__", _wrap_ThreeVector___ne__, METH_VARARGS, NULL}, + { (char *)"delete_ThreeVector", _wrap_delete_ThreeVector, METH_VARARGS, NULL}, + { (char *)"ThreeVector_swigregister", ThreeVector_swigregister, METH_VARARGS, NULL}, + { (char *)"new_GenEvent", _wrap_new_GenEvent, METH_VARARGS, NULL}, + { (char *)"delete_GenEvent", _wrap_delete_GenEvent, METH_VARARGS, NULL}, + { (char *)"GenEvent_swap", _wrap_GenEvent_swap, METH_VARARGS, NULL}, + { (char *)"GenEvent_as_str", _wrap_GenEvent_as_str, METH_VARARGS, NULL}, + { (char *)"GenEvent_print_version", _wrap_GenEvent_print_version, METH_VARARGS, NULL}, + { (char *)"GenEvent_barcode_to_particle", _wrap_GenEvent_barcode_to_particle, METH_VARARGS, NULL}, + { (char *)"GenEvent_barcode_to_vertex", _wrap_GenEvent_barcode_to_vertex, METH_VARARGS, NULL}, + { (char *)"GenEvent_signal_process_id", _wrap_GenEvent_signal_process_id, METH_VARARGS, NULL}, + { (char *)"GenEvent_event_number", _wrap_GenEvent_event_number, METH_VARARGS, NULL}, + { (char *)"GenEvent_mpi", _wrap_GenEvent_mpi, METH_VARARGS, NULL}, + { (char *)"GenEvent_event_scale", _wrap_GenEvent_event_scale, METH_VARARGS, NULL}, + { (char *)"GenEvent_alphaQCD", _wrap_GenEvent_alphaQCD, METH_VARARGS, NULL}, + { (char *)"GenEvent_alphaQED", _wrap_GenEvent_alphaQED, METH_VARARGS, NULL}, + { (char *)"GenEvent_signal_process_vertex", _wrap_GenEvent_signal_process_vertex, METH_VARARGS, NULL}, + { (char *)"GenEvent_valid_beam_particles", _wrap_GenEvent_valid_beam_particles, METH_VARARGS, NULL}, + { (char *)"GenEvent_beam_particles", _wrap_GenEvent_beam_particles, METH_VARARGS, NULL}, + { (char *)"GenEvent_weights", _wrap_GenEvent_weights, METH_VARARGS, NULL}, + { (char *)"GenEvent_heavy_ion", _wrap_GenEvent_heavy_ion, METH_VARARGS, NULL}, + { (char *)"GenEvent_pdf_info", _wrap_GenEvent_pdf_info, METH_VARARGS, NULL}, + { (char *)"GenEvent_random_states", _wrap_GenEvent_random_states, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_signal_process_id", _wrap_GenEvent_set_signal_process_id, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_event_number", _wrap_GenEvent_set_event_number, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_mpi", _wrap_GenEvent_set_mpi, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_event_scale", _wrap_GenEvent_set_event_scale, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_alphaQCD", _wrap_GenEvent_set_alphaQCD, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_alphaQED", _wrap_GenEvent_set_alphaQED, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_signal_process_vertex", _wrap_GenEvent_set_signal_process_vertex, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_beam_particles", _wrap_GenEvent_set_beam_particles, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_random_states", _wrap_GenEvent_set_random_states, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_heavy_ion", _wrap_GenEvent_set_heavy_ion, METH_VARARGS, NULL}, + { (char *)"GenEvent_set_pdf_info", _wrap_GenEvent_set_pdf_info, METH_VARARGS, NULL}, + { (char *)"GenEvent_particles_size", _wrap_GenEvent_particles_size, METH_VARARGS, NULL}, + { (char *)"GenEvent_particles_empty", _wrap_GenEvent_particles_empty, METH_VARARGS, NULL}, + { (char *)"GenEvent_vertices_size", _wrap_GenEvent_vertices_size, METH_VARARGS, NULL}, + { (char *)"GenEvent_vertices_empty", _wrap_GenEvent_vertices_empty, METH_VARARGS, NULL}, + { (char *)"GenEvent_add_vertex", _wrap_GenEvent_add_vertex, METH_VARARGS, NULL}, + { (char *)"GenEvent_remove_vertex", _wrap_GenEvent_remove_vertex, METH_VARARGS, NULL}, + { (char *)"GenEvent_clear", _wrap_GenEvent_clear, METH_VARARGS, NULL}, + { (char *)"GenEvent___str__", _wrap_GenEvent___str__, METH_VARARGS, NULL}, + { (char *)"GenEvent_summary", _wrap_GenEvent_summary, METH_VARARGS, NULL}, + { (char *)"GenEvent_particles", _wrap_GenEvent_particles, METH_VARARGS, NULL}, + { (char *)"GenEvent_vertices", _wrap_GenEvent_vertices, METH_VARARGS, NULL}, + { (char *)"GenEvent_fsParticles", _wrap_GenEvent_fsParticles, METH_VARARGS, NULL}, + { (char *)"GenEvent_swigregister", GenEvent_swigregister, METH_VARARGS, NULL}, + { (char *)"new_GenParticle", _wrap_new_GenParticle, METH_VARARGS, NULL}, + { (char *)"delete_GenParticle", _wrap_delete_GenParticle, METH_VARARGS, NULL}, + { (char *)"GenParticle_swap", _wrap_GenParticle_swap, METH_VARARGS, NULL}, + { (char *)"GenParticle___eq__", _wrap_GenParticle___eq__, METH_VARARGS, NULL}, + { (char *)"GenParticle___ne__", _wrap_GenParticle___ne__, METH_VARARGS, NULL}, + { (char *)"GenParticle_to_vec4", _wrap_GenParticle_to_vec4, METH_VARARGS, NULL}, + { (char *)"GenParticle_momentum", _wrap_GenParticle_momentum, METH_VARARGS, NULL}, + { (char *)"GenParticle_pdg_id", _wrap_GenParticle_pdg_id, METH_VARARGS, NULL}, + { (char *)"GenParticle_status", _wrap_GenParticle_status, METH_VARARGS, NULL}, + { (char *)"GenParticle_flow", _wrap_GenParticle_flow, METH_VARARGS, NULL}, + { (char *)"GenParticle_polarization", _wrap_GenParticle_polarization, METH_VARARGS, NULL}, + { (char *)"GenParticle_production_vertex", _wrap_GenParticle_production_vertex, METH_VARARGS, NULL}, + { (char *)"GenParticle_end_vertex", _wrap_GenParticle_end_vertex, METH_VARARGS, NULL}, + { (char *)"GenParticle_parent_event", _wrap_GenParticle_parent_event, METH_VARARGS, NULL}, + { (char *)"GenParticle_generated_mass", _wrap_GenParticle_generated_mass, METH_VARARGS, NULL}, + { (char *)"GenParticle_generatedMass", _wrap_GenParticle_generatedMass, METH_VARARGS, NULL}, + { (char *)"GenParticle_barcode", _wrap_GenParticle_barcode, METH_VARARGS, NULL}, + { (char *)"GenParticle_suggest_barcode", _wrap_GenParticle_suggest_barcode, METH_VARARGS, NULL}, + { (char *)"GenParticle_set_momentum", _wrap_GenParticle_set_momentum, METH_VARARGS, NULL}, + { (char *)"GenParticle_set_pdg_id", _wrap_GenParticle_set_pdg_id, METH_VARARGS, NULL}, + { (char *)"GenParticle_set_status", _wrap_GenParticle_set_status, METH_VARARGS, NULL}, + { (char *)"GenParticle_set_flow", _wrap_GenParticle_set_flow, METH_VARARGS, NULL}, + { (char *)"GenParticle_set_polarization", _wrap_GenParticle_set_polarization, METH_VARARGS, NULL}, + { (char *)"GenParticle_set_generated_mass", _wrap_GenParticle_set_generated_mass, METH_VARARGS, NULL}, + { (char *)"GenParticle_setGeneratedMass", _wrap_GenParticle_setGeneratedMass, METH_VARARGS, NULL}, + { (char *)"GenParticle___str__", _wrap_GenParticle___str__, METH_VARARGS, NULL}, + { (char *)"GenParticle_swigregister", GenParticle_swigregister, METH_VARARGS, NULL}, + { (char *)"new_GenVertex", _wrap_new_GenVertex, METH_VARARGS, NULL}, + { (char *)"delete_GenVertex", _wrap_delete_GenVertex, METH_VARARGS, NULL}, + { (char *)"GenVertex_swap", _wrap_GenVertex_swap, METH_VARARGS, NULL}, + { (char *)"GenVertex___eq__", _wrap_GenVertex___eq__, METH_VARARGS, NULL}, + { (char *)"GenVertex___ne__", _wrap_GenVertex___ne__, METH_VARARGS, NULL}, + { (char *)"GenVertex_check_momentum_conservation", _wrap_GenVertex_check_momentum_conservation, METH_VARARGS, NULL}, + { (char *)"GenVertex_add_particle_in", _wrap_GenVertex_add_particle_in, METH_VARARGS, NULL}, + { (char *)"GenVertex_add_particle_out", _wrap_GenVertex_add_particle_out, METH_VARARGS, NULL}, + { (char *)"GenVertex_remove_particle", _wrap_GenVertex_remove_particle, METH_VARARGS, NULL}, + { (char *)"GenVertex_to_vec4", _wrap_GenVertex_to_vec4, METH_VARARGS, NULL}, + { (char *)"GenVertex_to_vec3", _wrap_GenVertex_to_vec3, METH_VARARGS, NULL}, + { (char *)"GenVertex_parent_event", _wrap_GenVertex_parent_event, METH_VARARGS, NULL}, + { (char *)"GenVertex_point3d", _wrap_GenVertex_point3d, METH_VARARGS, NULL}, + { (char *)"GenVertex_position", _wrap_GenVertex_position, METH_VARARGS, NULL}, + { (char *)"GenVertex_set_position", _wrap_GenVertex_set_position, METH_VARARGS, NULL}, + { (char *)"GenVertex_id", _wrap_GenVertex_id, METH_VARARGS, NULL}, + { (char *)"GenVertex_set_id", _wrap_GenVertex_set_id, METH_VARARGS, NULL}, + { (char *)"GenVertex_barcode", _wrap_GenVertex_barcode, METH_VARARGS, NULL}, + { (char *)"GenVertex_suggest_barcode", _wrap_GenVertex_suggest_barcode, METH_VARARGS, NULL}, + { (char *)"GenVertex_weights", _wrap_GenVertex_weights, METH_VARARGS, NULL}, + { (char *)"GenVertex_particles_in_size", _wrap_GenVertex_particles_in_size, METH_VARARGS, NULL}, + { (char *)"GenVertex_particles_out_size", _wrap_GenVertex_particles_out_size, METH_VARARGS, NULL}, + { (char *)"GenVertex___str__", _wrap_GenVertex___str__, METH_VARARGS, NULL}, + { (char *)"GenVertex_particles_in", _wrap_GenVertex_particles_in, METH_VARARGS, NULL}, + { (char *)"GenVertex_particles_out", _wrap_GenVertex_particles_out, METH_VARARGS, NULL}, + { (char *)"GenVertex_particles", _wrap_GenVertex_particles, METH_VARARGS, NULL}, + { (char *)"GenVertex_vertices", _wrap_GenVertex_vertices, METH_VARARGS, NULL}, + { (char *)"GenVertex_swigregister", GenVertex_swigregister, METH_VARARGS, NULL}, + { (char *)"delete_IO_BaseClass", _wrap_delete_IO_BaseClass, METH_VARARGS, NULL}, + { (char *)"IO_BaseClass_write_event", _wrap_IO_BaseClass_write_event, METH_VARARGS, NULL}, + { (char *)"IO_BaseClass_fill_next_event", _wrap_IO_BaseClass_fill_next_event, METH_VARARGS, NULL}, + { (char *)"IO_BaseClass_write_particle_data_table", _wrap_IO_BaseClass_write_particle_data_table, METH_VARARGS, NULL}, + { (char *)"IO_BaseClass_fill_particle_data_table", _wrap_IO_BaseClass_fill_particle_data_table, METH_VARARGS, NULL}, + { (char *)"IO_BaseClass_read_next_event", _wrap_IO_BaseClass_read_next_event, METH_VARARGS, NULL}, + { (char *)"IO_BaseClass_read_particle_data_table", _wrap_IO_BaseClass_read_particle_data_table, METH_VARARGS, NULL}, + { (char *)"IO_BaseClass___rshift__", _wrap_IO_BaseClass___rshift__, METH_VARARGS, NULL}, + { (char *)"IO_BaseClass_swigregister", IO_BaseClass_swigregister, METH_VARARGS, NULL}, + { (char *)"delete_IO_GenEvent", _wrap_delete_IO_GenEvent, METH_VARARGS, NULL}, + { (char *)"IO_GenEvent_write_event", _wrap_IO_GenEvent_write_event, METH_VARARGS, NULL}, + { (char *)"IO_GenEvent_fill_next_event", _wrap_IO_GenEvent_fill_next_event, METH_VARARGS, NULL}, + { (char *)"IO_GenEvent_write_particle_data_table", _wrap_IO_GenEvent_write_particle_data_table, METH_VARARGS, NULL}, + { (char *)"IO_GenEvent_fill_particle_data_table", _wrap_IO_GenEvent_fill_particle_data_table, METH_VARARGS, NULL}, + { (char *)"IO_GenEvent_write_comment", _wrap_IO_GenEvent_write_comment, METH_VARARGS, NULL}, + { (char *)"IO_GenEvent_rdstate", _wrap_IO_GenEvent_rdstate, METH_VARARGS, NULL}, + { (char *)"IO_GenEvent_clear", _wrap_IO_GenEvent_clear, METH_VARARGS, NULL}, + { (char *)"new_IO_GenEvent", _wrap_new_IO_GenEvent, METH_VARARGS, NULL}, + { (char *)"IO_GenEvent_get_next_event", _wrap_IO_GenEvent_get_next_event, METH_VARARGS, NULL}, + { (char *)"IO_GenEvent_swigregister", IO_GenEvent_swigregister, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_iterator", _wrap_GenParticleVector_iterator, METH_VARARGS, NULL}, + { (char *)"GenParticleVector___nonzero__", _wrap_GenParticleVector___nonzero__, METH_VARARGS, NULL}, + { (char *)"GenParticleVector___len__", _wrap_GenParticleVector___len__, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_pop", _wrap_GenParticleVector_pop, METH_VARARGS, NULL}, + { (char *)"GenParticleVector___getslice__", _wrap_GenParticleVector___getslice__, METH_VARARGS, NULL}, + { (char *)"GenParticleVector___setslice__", _wrap_GenParticleVector___setslice__, METH_VARARGS, NULL}, + { (char *)"GenParticleVector___delslice__", _wrap_GenParticleVector___delslice__, METH_VARARGS, NULL}, + { (char *)"GenParticleVector___delitem__", _wrap_GenParticleVector___delitem__, METH_VARARGS, NULL}, + { (char *)"GenParticleVector___getitem__", _wrap_GenParticleVector___getitem__, METH_VARARGS, NULL}, + { (char *)"GenParticleVector___setitem__", _wrap_GenParticleVector___setitem__, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_append", _wrap_GenParticleVector_append, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_empty", _wrap_GenParticleVector_empty, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_size", _wrap_GenParticleVector_size, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_clear", _wrap_GenParticleVector_clear, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_swap", _wrap_GenParticleVector_swap, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_get_allocator", _wrap_GenParticleVector_get_allocator, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_begin", _wrap_GenParticleVector_begin, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_end", _wrap_GenParticleVector_end, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_rbegin", _wrap_GenParticleVector_rbegin, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_rend", _wrap_GenParticleVector_rend, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_pop_back", _wrap_GenParticleVector_pop_back, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_erase", _wrap_GenParticleVector_erase, METH_VARARGS, NULL}, + { (char *)"new_GenParticleVector", _wrap_new_GenParticleVector, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_push_back", _wrap_GenParticleVector_push_back, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_front", _wrap_GenParticleVector_front, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_back", _wrap_GenParticleVector_back, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_assign", _wrap_GenParticleVector_assign, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_resize", _wrap_GenParticleVector_resize, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_insert", _wrap_GenParticleVector_insert, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_reserve", _wrap_GenParticleVector_reserve, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_capacity", _wrap_GenParticleVector_capacity, METH_VARARGS, NULL}, + { (char *)"delete_GenParticleVector", _wrap_delete_GenParticleVector, METH_VARARGS, NULL}, + { (char *)"GenParticleVector_swigregister", GenParticleVector_swigregister, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_iterator", _wrap_cGenParticleVector_iterator, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector___nonzero__", _wrap_cGenParticleVector___nonzero__, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector___len__", _wrap_cGenParticleVector___len__, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_pop", _wrap_cGenParticleVector_pop, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector___getslice__", _wrap_cGenParticleVector___getslice__, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector___setslice__", _wrap_cGenParticleVector___setslice__, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector___delslice__", _wrap_cGenParticleVector___delslice__, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector___delitem__", _wrap_cGenParticleVector___delitem__, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector___getitem__", _wrap_cGenParticleVector___getitem__, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector___setitem__", _wrap_cGenParticleVector___setitem__, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_append", _wrap_cGenParticleVector_append, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_empty", _wrap_cGenParticleVector_empty, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_size", _wrap_cGenParticleVector_size, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_clear", _wrap_cGenParticleVector_clear, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_swap", _wrap_cGenParticleVector_swap, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_get_allocator", _wrap_cGenParticleVector_get_allocator, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_begin", _wrap_cGenParticleVector_begin, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_end", _wrap_cGenParticleVector_end, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_rbegin", _wrap_cGenParticleVector_rbegin, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_rend", _wrap_cGenParticleVector_rend, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_pop_back", _wrap_cGenParticleVector_pop_back, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_erase", _wrap_cGenParticleVector_erase, METH_VARARGS, NULL}, + { (char *)"new_cGenParticleVector", _wrap_new_cGenParticleVector, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_push_back", _wrap_cGenParticleVector_push_back, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_front", _wrap_cGenParticleVector_front, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_back", _wrap_cGenParticleVector_back, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_assign", _wrap_cGenParticleVector_assign, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_resize", _wrap_cGenParticleVector_resize, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_insert", _wrap_cGenParticleVector_insert, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_reserve", _wrap_cGenParticleVector_reserve, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_capacity", _wrap_cGenParticleVector_capacity, METH_VARARGS, NULL}, + { (char *)"delete_cGenParticleVector", _wrap_delete_cGenParticleVector, METH_VARARGS, NULL}, + { (char *)"cGenParticleVector_swigregister", cGenParticleVector_swigregister, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_iterator", _wrap_GenVertexVector_iterator, METH_VARARGS, NULL}, + { (char *)"GenVertexVector___nonzero__", _wrap_GenVertexVector___nonzero__, METH_VARARGS, NULL}, + { (char *)"GenVertexVector___len__", _wrap_GenVertexVector___len__, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_pop", _wrap_GenVertexVector_pop, METH_VARARGS, NULL}, + { (char *)"GenVertexVector___getslice__", _wrap_GenVertexVector___getslice__, METH_VARARGS, NULL}, + { (char *)"GenVertexVector___setslice__", _wrap_GenVertexVector___setslice__, METH_VARARGS, NULL}, + { (char *)"GenVertexVector___delslice__", _wrap_GenVertexVector___delslice__, METH_VARARGS, NULL}, + { (char *)"GenVertexVector___delitem__", _wrap_GenVertexVector___delitem__, METH_VARARGS, NULL}, + { (char *)"GenVertexVector___getitem__", _wrap_GenVertexVector___getitem__, METH_VARARGS, NULL}, + { (char *)"GenVertexVector___setitem__", _wrap_GenVertexVector___setitem__, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_append", _wrap_GenVertexVector_append, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_empty", _wrap_GenVertexVector_empty, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_size", _wrap_GenVertexVector_size, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_clear", _wrap_GenVertexVector_clear, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_swap", _wrap_GenVertexVector_swap, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_get_allocator", _wrap_GenVertexVector_get_allocator, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_begin", _wrap_GenVertexVector_begin, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_end", _wrap_GenVertexVector_end, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_rbegin", _wrap_GenVertexVector_rbegin, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_rend", _wrap_GenVertexVector_rend, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_pop_back", _wrap_GenVertexVector_pop_back, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_erase", _wrap_GenVertexVector_erase, METH_VARARGS, NULL}, + { (char *)"new_GenVertexVector", _wrap_new_GenVertexVector, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_push_back", _wrap_GenVertexVector_push_back, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_front", _wrap_GenVertexVector_front, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_back", _wrap_GenVertexVector_back, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_assign", _wrap_GenVertexVector_assign, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_resize", _wrap_GenVertexVector_resize, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_insert", _wrap_GenVertexVector_insert, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_reserve", _wrap_GenVertexVector_reserve, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_capacity", _wrap_GenVertexVector_capacity, METH_VARARGS, NULL}, + { (char *)"delete_GenVertexVector", _wrap_delete_GenVertexVector, METH_VARARGS, NULL}, + { (char *)"GenVertexVector_swigregister", GenVertexVector_swigregister, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_iterator", _wrap_cGenVertexVector_iterator, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector___nonzero__", _wrap_cGenVertexVector___nonzero__, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector___len__", _wrap_cGenVertexVector___len__, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_pop", _wrap_cGenVertexVector_pop, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector___getslice__", _wrap_cGenVertexVector___getslice__, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector___setslice__", _wrap_cGenVertexVector___setslice__, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector___delslice__", _wrap_cGenVertexVector___delslice__, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector___delitem__", _wrap_cGenVertexVector___delitem__, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector___getitem__", _wrap_cGenVertexVector___getitem__, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector___setitem__", _wrap_cGenVertexVector___setitem__, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_append", _wrap_cGenVertexVector_append, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_empty", _wrap_cGenVertexVector_empty, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_size", _wrap_cGenVertexVector_size, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_clear", _wrap_cGenVertexVector_clear, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_swap", _wrap_cGenVertexVector_swap, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_get_allocator", _wrap_cGenVertexVector_get_allocator, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_begin", _wrap_cGenVertexVector_begin, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_end", _wrap_cGenVertexVector_end, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_rbegin", _wrap_cGenVertexVector_rbegin, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_rend", _wrap_cGenVertexVector_rend, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_pop_back", _wrap_cGenVertexVector_pop_back, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_erase", _wrap_cGenVertexVector_erase, METH_VARARGS, NULL}, + { (char *)"new_cGenVertexVector", _wrap_new_cGenVertexVector, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_push_back", _wrap_cGenVertexVector_push_back, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_front", _wrap_cGenVertexVector_front, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_back", _wrap_cGenVertexVector_back, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_assign", _wrap_cGenVertexVector_assign, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_resize", _wrap_cGenVertexVector_resize, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_insert", _wrap_cGenVertexVector_insert, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_reserve", _wrap_cGenVertexVector_reserve, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_capacity", _wrap_cGenVertexVector_capacity, METH_VARARGS, NULL}, + { (char *)"delete_cGenVertexVector", _wrap_delete_cGenVertexVector, METH_VARARGS, NULL}, + { (char *)"cGenVertexVector_swigregister", cGenVertexVector_swigregister, METH_VARARGS, NULL}, + { (char *)"new_GenParticlePair", _wrap_new_GenParticlePair, METH_VARARGS, NULL}, + { (char *)"GenParticlePair_first_set", _wrap_GenParticlePair_first_set, METH_VARARGS, NULL}, + { (char *)"GenParticlePair_first_get", _wrap_GenParticlePair_first_get, METH_VARARGS, NULL}, + { (char *)"GenParticlePair_second_set", _wrap_GenParticlePair_second_set, METH_VARARGS, NULL}, + { (char *)"GenParticlePair_second_get", _wrap_GenParticlePair_second_get, METH_VARARGS, NULL}, + { (char *)"delete_GenParticlePair", _wrap_delete_GenParticlePair, METH_VARARGS, NULL}, + { (char *)"GenParticlePair_swigregister", GenParticlePair_swigregister, METH_VARARGS, NULL}, + { (char *)"new_cGenParticlePair", _wrap_new_cGenParticlePair, METH_VARARGS, NULL}, + { (char *)"cGenParticlePair_first_set", _wrap_cGenParticlePair_first_set, METH_VARARGS, NULL}, + { (char *)"cGenParticlePair_first_get", _wrap_cGenParticlePair_first_get, METH_VARARGS, NULL}, + { (char *)"cGenParticlePair_second_set", _wrap_cGenParticlePair_second_set, METH_VARARGS, NULL}, + { (char *)"cGenParticlePair_second_get", _wrap_cGenParticlePair_second_get, METH_VARARGS, NULL}, + { (char *)"delete_cGenParticlePair", _wrap_delete_cGenParticlePair, METH_VARARGS, NULL}, + { (char *)"cGenParticlePair_swigregister", cGenParticlePair_swigregister, METH_VARARGS, NULL}, + { (char *)"StrList_iterator", _wrap_StrList_iterator, METH_VARARGS, NULL}, + { (char *)"StrList___nonzero__", _wrap_StrList___nonzero__, METH_VARARGS, NULL}, + { (char *)"StrList___len__", _wrap_StrList___len__, METH_VARARGS, NULL}, + { (char *)"StrList_pop", _wrap_StrList_pop, METH_VARARGS, NULL}, + { (char *)"StrList___getslice__", _wrap_StrList___getslice__, METH_VARARGS, NULL}, + { (char *)"StrList___setslice__", _wrap_StrList___setslice__, METH_VARARGS, NULL}, + { (char *)"StrList___delslice__", _wrap_StrList___delslice__, METH_VARARGS, NULL}, + { (char *)"StrList___delitem__", _wrap_StrList___delitem__, METH_VARARGS, NULL}, + { (char *)"StrList___getitem__", _wrap_StrList___getitem__, METH_VARARGS, NULL}, + { (char *)"StrList___setitem__", _wrap_StrList___setitem__, METH_VARARGS, NULL}, + { (char *)"StrList_append", _wrap_StrList_append, METH_VARARGS, NULL}, + { (char *)"StrList_empty", _wrap_StrList_empty, METH_VARARGS, NULL}, + { (char *)"StrList_size", _wrap_StrList_size, METH_VARARGS, NULL}, + { (char *)"StrList_clear", _wrap_StrList_clear, METH_VARARGS, NULL}, + { (char *)"StrList_swap", _wrap_StrList_swap, METH_VARARGS, NULL}, + { (char *)"StrList_get_allocator", _wrap_StrList_get_allocator, METH_VARARGS, NULL}, + { (char *)"StrList_begin", _wrap_StrList_begin, METH_VARARGS, NULL}, + { (char *)"StrList_end", _wrap_StrList_end, METH_VARARGS, NULL}, + { (char *)"StrList_rbegin", _wrap_StrList_rbegin, METH_VARARGS, NULL}, + { (char *)"StrList_rend", _wrap_StrList_rend, METH_VARARGS, NULL}, + { (char *)"StrList_pop_back", _wrap_StrList_pop_back, METH_VARARGS, NULL}, + { (char *)"StrList_erase", _wrap_StrList_erase, METH_VARARGS, NULL}, + { (char *)"new_StrList", _wrap_new_StrList, METH_VARARGS, NULL}, + { (char *)"StrList_push_back", _wrap_StrList_push_back, METH_VARARGS, NULL}, + { (char *)"StrList_front", _wrap_StrList_front, METH_VARARGS, NULL}, + { (char *)"StrList_back", _wrap_StrList_back, METH_VARARGS, NULL}, + { (char *)"StrList_assign", _wrap_StrList_assign, METH_VARARGS, NULL}, + { (char *)"StrList_resize", _wrap_StrList_resize, METH_VARARGS, NULL}, + { (char *)"StrList_insert", _wrap_StrList_insert, METH_VARARGS, NULL}, + { (char *)"StrList_reserve", _wrap_StrList_reserve, METH_VARARGS, NULL}, + { (char *)"StrList_capacity", _wrap_StrList_capacity, METH_VARARGS, NULL}, + { (char *)"delete_StrList", _wrap_delete_StrList, METH_VARARGS, NULL}, + { (char *)"StrList_swigregister", StrList_swigregister, METH_VARARGS, NULL}, + { (char *)"getKnownHistoFormats", _wrap_getKnownHistoFormats, METH_VARARGS, NULL}, + { (char *)"getKnownHistoFormatsR", _wrap_getKnownHistoFormatsR, METH_VARARGS, NULL}, + { (char *)"getKnownHistoFormatEnums", _wrap_getKnownHistoFormatEnums, METH_VARARGS, NULL}, + { (char *)"getKnownHistoFormatNames", _wrap_getKnownHistoFormatNames, METH_VARARGS, NULL}, + { (char *)"make_pdgid_pair", _wrap_make_pdgid_pair, METH_VARARGS, NULL}, + { (char *)"getParticleNamesMap", _wrap_getParticleNamesMap, METH_VARARGS, NULL}, + { (char *)"getParticleNamesRMap", _wrap_getParticleNamesRMap, METH_VARARGS, NULL}, + { (char *)"getParticleNameEnums", _wrap_getParticleNameEnums, METH_VARARGS, NULL}, + { (char *)"getParticleNameEnum", _wrap_getParticleNameEnum, METH_VARARGS, NULL}, + { (char *)"getParticleNames", _wrap_getParticleNames, METH_VARARGS, NULL}, + { (char *)"toParticleName", _wrap_toParticleName, METH_VARARGS, NULL}, + { (char *)"toString", _wrap_toString, METH_VARARGS, NULL}, + { (char *)"new_BeamPair", _wrap_new_BeamPair, METH_VARARGS, NULL}, + { (char *)"BeamPair_first_set", _wrap_BeamPair_first_set, METH_VARARGS, NULL}, + { (char *)"BeamPair_first_get", _wrap_BeamPair_first_get, METH_VARARGS, NULL}, + { (char *)"BeamPair_second_set", _wrap_BeamPair_second_set, METH_VARARGS, NULL}, + { (char *)"BeamPair_second_get", _wrap_BeamPair_second_get, METH_VARARGS, NULL}, + { (char *)"delete_BeamPair", _wrap_delete_BeamPair, METH_VARARGS, NULL}, + { (char *)"BeamPair_swigregister", BeamPair_swigregister, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_iterator", _wrap_LogLevelMap_iterator, METH_VARARGS, NULL}, + { (char *)"LogLevelMap___nonzero__", _wrap_LogLevelMap___nonzero__, METH_VARARGS, NULL}, + { (char *)"LogLevelMap___len__", _wrap_LogLevelMap___len__, METH_VARARGS, NULL}, + { (char *)"LogLevelMap___getitem__", _wrap_LogLevelMap___getitem__, METH_VARARGS, NULL}, + { (char *)"LogLevelMap___delitem__", _wrap_LogLevelMap___delitem__, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_has_key", _wrap_LogLevelMap_has_key, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_keys", _wrap_LogLevelMap_keys, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_values", _wrap_LogLevelMap_values, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_items", _wrap_LogLevelMap_items, METH_VARARGS, NULL}, + { (char *)"LogLevelMap___contains__", _wrap_LogLevelMap___contains__, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_key_iterator", _wrap_LogLevelMap_key_iterator, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_value_iterator", _wrap_LogLevelMap_value_iterator, METH_VARARGS, NULL}, + { (char *)"LogLevelMap___setitem__", _wrap_LogLevelMap___setitem__, METH_VARARGS, NULL}, + { (char *)"new_LogLevelMap", _wrap_new_LogLevelMap, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_empty", _wrap_LogLevelMap_empty, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_size", _wrap_LogLevelMap_size, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_clear", _wrap_LogLevelMap_clear, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_swap", _wrap_LogLevelMap_swap, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_get_allocator", _wrap_LogLevelMap_get_allocator, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_begin", _wrap_LogLevelMap_begin, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_end", _wrap_LogLevelMap_end, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_rbegin", _wrap_LogLevelMap_rbegin, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_rend", _wrap_LogLevelMap_rend, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_count", _wrap_LogLevelMap_count, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_erase", _wrap_LogLevelMap_erase, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_find", _wrap_LogLevelMap_find, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_lower_bound", _wrap_LogLevelMap_lower_bound, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_upper_bound", _wrap_LogLevelMap_upper_bound, METH_VARARGS, NULL}, + { (char *)"delete_LogLevelMap", _wrap_delete_LogLevelMap, METH_VARARGS, NULL}, + { (char *)"LogLevelMap_swigregister", LogLevelMap_swigregister, METH_VARARGS, NULL}, + { (char *)"Log_setLogLevel", _wrap_Log_setLogLevel, METH_VARARGS, NULL}, + { (char *)"Log_setLevels", _wrap_Log_setLevels, METH_VARARGS, NULL}, + { (char *)"Log_setShowTimestamp", _wrap_Log_setShowTimestamp, METH_VARARGS, NULL}, + { (char *)"Log_setShowLevel", _wrap_Log_setShowLevel, METH_VARARGS, NULL}, + { (char *)"Log_setShowLoggerName", _wrap_Log_setShowLoggerName, METH_VARARGS, NULL}, + { (char *)"Log_setUseColors", _wrap_Log_setUseColors, METH_VARARGS, NULL}, + { (char *)"Log_getLog", _wrap_Log_getLog, METH_VARARGS, NULL}, + { (char *)"Log_getLevel", _wrap_Log_getLevel, METH_VARARGS, NULL}, + { (char *)"Log_setLevel", _wrap_Log_setLevel, METH_VARARGS, NULL}, + { (char *)"Log_getLevelFromName", _wrap_Log_getLevelFromName, METH_VARARGS, NULL}, + { (char *)"Log_getLevelName", _wrap_Log_getLevelName, METH_VARARGS, NULL}, + { (char *)"Log_getName", _wrap_Log_getName, METH_VARARGS, NULL}, + { (char *)"Log_setName", _wrap_Log_setName, METH_VARARGS, NULL}, + { (char *)"Log_isActive", _wrap_Log_isActive, METH_VARARGS, NULL}, + { (char *)"Log_trace", _wrap_Log_trace, METH_VARARGS, NULL}, + { (char *)"Log_debug", _wrap_Log_debug, METH_VARARGS, NULL}, + { (char *)"Log_info", _wrap_Log_info, METH_VARARGS, NULL}, + { (char *)"Log_warn", _wrap_Log_warn, METH_VARARGS, NULL}, + { (char *)"Log_error", _wrap_Log_error, METH_VARARGS, NULL}, + { (char *)"Log__nostream_get", _wrap_Log__nostream_get, METH_VARARGS, NULL}, + { (char *)"delete_Log", _wrap_delete_Log, METH_VARARGS, NULL}, + { (char *)"Log_swigregister", Log_swigregister, METH_VARARGS, NULL}, + { (char *)"__lshift__", _wrap___lshift__, METH_VARARGS, NULL}, + { (char *)"version", _wrap_version, METH_VARARGS, NULL}, + { (char *)"delete_Event", _wrap_delete_Event, METH_VARARGS, NULL}, + { (char *)"Event_swigregister", Event_swigregister, METH_VARARGS, NULL}, + { (char *)"delete_Particle", _wrap_delete_Particle, METH_VARARGS, NULL}, + { (char *)"Particle_swigregister", Particle_swigregister, METH_VARARGS, NULL}, + { (char *)"beams", _wrap_beams, METH_VARARGS, NULL}, + { (char *)"beamIds", _wrap_beamIds, METH_VARARGS, NULL}, + { (char *)"Analysis_name", _wrap_Analysis_name, METH_VARARGS, NULL}, + { (char *)"Analysis_spiresId", _wrap_Analysis_spiresId, METH_VARARGS, NULL}, + { (char *)"Analysis_summary", _wrap_Analysis_summary, METH_VARARGS, NULL}, + { (char *)"Analysis_description", _wrap_Analysis_description, METH_VARARGS, NULL}, + { (char *)"Analysis_runInfo", _wrap_Analysis_runInfo, METH_VARARGS, NULL}, + { (char *)"Analysis_experiment", _wrap_Analysis_experiment, METH_VARARGS, NULL}, + { (char *)"Analysis_collider", _wrap_Analysis_collider, METH_VARARGS, NULL}, + { (char *)"Analysis_year", _wrap_Analysis_year, METH_VARARGS, NULL}, + { (char *)"Analysis_status", _wrap_Analysis_status, METH_VARARGS, NULL}, + { (char *)"Analysis_authors", _wrap_Analysis_authors, METH_VARARGS, NULL}, + { (char *)"Analysis_references", _wrap_Analysis_references, METH_VARARGS, NULL}, + { (char *)"Analysis_beams", _wrap_Analysis_beams, METH_VARARGS, NULL}, + { (char *)"Analysis_requiredBeams", _wrap_Analysis_requiredBeams, METH_VARARGS, NULL}, + { (char *)"Analysis_isCompatible", _wrap_Analysis_isCompatible, METH_VARARGS, NULL}, + { (char *)"Analysis_needsCrossSection", _wrap_Analysis_needsCrossSection, METH_VARARGS, NULL}, + { (char *)"delete_Analysis", _wrap_delete_Analysis, METH_VARARGS, NULL}, + { (char *)"Analysis_swigregister", Analysis_swigregister, METH_VARARGS, NULL}, + { (char *)"new_AnalysisHandler", _wrap_new_AnalysisHandler, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_runName", _wrap_AnalysisHandler_runName, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_numEvents", _wrap_AnalysisHandler_numEvents, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_sumOfWeights", _wrap_AnalysisHandler_sumOfWeights, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_analysisNames", _wrap_AnalysisHandler_analysisNames, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_addAnalysis", _wrap_AnalysisHandler_addAnalysis, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_addAnalyses", _wrap_AnalysisHandler_addAnalyses, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_removeAnalysis", _wrap_AnalysisHandler_removeAnalysis, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_removeAnalyses", _wrap_AnalysisHandler_removeAnalyses, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_removeIncompatibleAnalyses", _wrap_AnalysisHandler_removeIncompatibleAnalyses, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_init", _wrap_AnalysisHandler_init, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_analyze", _wrap_AnalysisHandler_analyze, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_finalize", _wrap_AnalysisHandler_finalize, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_needCrossSection", _wrap_AnalysisHandler_needCrossSection, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_setCrossSection", _wrap_AnalysisHandler_setCrossSection, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_commitData", _wrap_AnalysisHandler_commitData, METH_VARARGS, NULL}, + { (char *)"delete_AnalysisHandler", _wrap_delete_AnalysisHandler, METH_VARARGS, NULL}, + { (char *)"AnalysisHandler_swigregister", AnalysisHandler_swigregister, METH_VARARGS, NULL}, + { (char *)"AnalysisLoader_getAnalysis", _wrap_AnalysisLoader_getAnalysis, METH_VARARGS, NULL}, + { (char *)"AnalysisLoader_closeAnalysisBuilders", _wrap_AnalysisLoader_closeAnalysisBuilders, METH_VARARGS, NULL}, + { (char *)"AnalysisLoader_allAnalysisNames", _wrap_AnalysisLoader_allAnalysisNames, METH_VARARGS, NULL}, + { (char *)"new_AnalysisLoader", _wrap_new_AnalysisLoader, METH_VARARGS, NULL}, + { (char *)"delete_AnalysisLoader", _wrap_delete_AnalysisLoader, METH_VARARGS, NULL}, + { (char *)"AnalysisLoader_swigregister", AnalysisLoader_swigregister, METH_VARARGS, NULL}, + { NULL, NULL, 0, NULL } +}; + + +/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ + +static void *_p_HepMC__IO_GenEventTo_p_HepMC__IO_BaseClass(void *x) { + return (void *)((HepMC::IO_BaseClass *) ((HepMC::IO_GenEvent *) x)); +} +static swig_type_info _swigt__p_ColorCodes = {"_p_ColorCodes", "ColorCodes *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_Flow = {"_p_Flow", "Flow *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_GenParticle = {"_p_GenParticle", "GenParticle *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_GenVertex = {"_p_GenVertex", "GenVertex *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_HeavyIon = {"_p_HeavyIon", "HeavyIon *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_HepMC__FourVector = {"_p_HepMC__FourVector", "HepMC::FourVector *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_HepMC__GenEvent = {"_p_HepMC__GenEvent", "HepMC::GenEvent *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_HepMC__GenParticle = {"_p_HepMC__GenParticle", "HepMC::GenParticle *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_HepMC__GenVertex = {"_p_HepMC__GenVertex", "HepMC::GenVertex *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_HepMC__IO_BaseClass = {"_p_HepMC__IO_BaseClass", "HepMC::IO_BaseClass *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_HepMC__IO_GenEvent = {"_p_HepMC__IO_GenEvent", "HepMC::IO_GenEvent *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_HepMC__ThreeVector = {"_p_HepMC__ThreeVector", "HepMC::ThreeVector *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_LevelMap = {"_p_LevelMap", "LevelMap *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_LogMap = {"_p_LogMap", "LogMap *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_ParticleDataTable = {"_p_ParticleDataTable", "ParticleDataTable *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_PdfInfo = {"_p_PdfInfo", "PdfInfo *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_Polarization = {"_p_Polarization", "Polarization *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_Rivet__Analysis = {"_p_Rivet__Analysis", "Rivet::Analysis *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_Rivet__AnalysisHandler = {"_p_Rivet__AnalysisHandler", "Rivet::AnalysisHandler *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_Rivet__AnalysisLoader = {"_p_Rivet__AnalysisLoader", "Rivet::AnalysisLoader *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_Rivet__Event = {"_p_Rivet__Event", "Rivet::Event *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_Rivet__Log = {"_p_Rivet__Log", "Rivet::Log *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_Rivet__Particle = {"_p_Rivet__Particle", "Rivet::Particle *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_WeightContainer = {"_p_WeightContainer", "WeightContainer *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_allocator_type = {"_p_allocator_type", "allocator_type *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_const_reference = {"_p_const_reference", "const_reference *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_difference_type = {"_p_difference_type", "difference_type *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_first_type = {"_p_first_type", "first_type *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_key_type = {"_p_key_type", "key_type *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_long = {"_p_long", "long *|Rivet::PdgId *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_mapped_type = {"_p_mapped_type", "mapped_type *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_p_HepMC__GenEvent = {"_p_p_HepMC__GenEvent", "HepMC::GenEvent **", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_p_ParticleDataTable = {"_p_p_ParticleDataTable", "ParticleDataTable **", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_p_PyObject = {"_p_p_PyObject", "PyObject **", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_particles_in_const_iterator = {"_p_particles_in_const_iterator", "particles_in_const_iterator *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_particles_out_const_iterator = {"_p_particles_out_const_iterator", "particles_out_const_iterator *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_reference = {"_p_reference", "reference *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_second_type = {"_p_second_type", "second_type *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_size_type = {"_p_size_type", "size_type *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__invalid_argument = {"_p_std__invalid_argument", "std::invalid_argument *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__ios__openmode = {"_p_std__ios__openmode", "std::ios::openmode *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__istream = {"_p_std__istream", "std::istream *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__lessTstd__string_t = {"_p_std__lessTstd__string_t", "std::less<std::string > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__mapTRivet__HistoFormat_std__string_std__lessTRivet__HistoFormat_t_std__allocatorTstd__pairTRivet__HistoFormat_const_std__string_t_t_t = {"_p_std__mapTRivet__HistoFormat_std__string_std__lessTRivet__HistoFormat_t_std__allocatorTstd__pairTRivet__HistoFormat_const_std__string_t_t_t", "std::map<enum Rivet::HistoFormat,std::string,std::less<enum Rivet::HistoFormat >,std::allocator<std::pair<enum Rivet::HistoFormat const,std::string > > > *|Rivet::HistoFormatMap *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__mapTlong_std__string_std__lessTlong_t_std__allocatorTstd__pairTlong_const_std__string_t_t_t = {"_p_std__mapTlong_std__string_std__lessTlong_t_std__allocatorTstd__pairTlong_const_std__string_t_t_t", "std::map<long,std::string,std::less<long >,std::allocator<std::pair<long const,std::string > > > *|Rivet::ParticleNameMap *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__mapTstd__string_Rivet__HistoFormat_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_Rivet__HistoFormat_t_t_t = {"_p_std__mapTstd__string_Rivet__HistoFormat_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_Rivet__HistoFormat_t_t_t", "std::map<std::string,enum Rivet::HistoFormat,std::less<std::string >,std::allocator<std::pair<std::string const,enum Rivet::HistoFormat > > > *|Rivet::HistoFormatMapR *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__mapTstd__string_const_int_std__lessTstd__string_const_t_std__allocatorTstd__pairTstd__string_const_const_int_t_t_t = {"_p_std__mapTstd__string_const_int_std__lessTstd__string_const_t_std__allocatorTstd__pairTstd__string_const_const_int_t_t_t", "std::map<std::string const,int,std::less<std::string const >,std::allocator<std::pair<std::string const const,int > > > *|Rivet::Log::LevelMap *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t = {"_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t", "std::map<std::string,int,std::less<std::string >,std::allocator<std::pair<std::string const,int > > > *|std::map<std::string,int > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t__allocator_type = {"_p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t__allocator_type", "std::map<std::string,int >::allocator_type *|std::allocator<std::pair<std::string const,int > > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__mapTstd__string_long_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_long_t_t_t = {"_p_std__mapTstd__string_long_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_long_t_t_t", "Rivet::ParticleNameMapR *|std::map<std::string,long,std::less<std::string >,std::allocator<std::pair<std::string const,long > > > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__ostream = {"_p_std__ostream", "std::ostream *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t = {"_p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t", "std::pair<HepMC::GenParticle const *,HepMC::GenParticle const * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t = {"_p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t", "std::pair<HepMC::GenParticle *,HepMC::GenParticle * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__pairTRivet__Particle_Rivet__Particle_t = {"_p_std__pairTRivet__Particle_Rivet__Particle_t", "Rivet::ParticlePair *|std::pair<Rivet::Particle,Rivet::Particle > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__pairTlong_long_t = {"_p_std__pairTlong_long_t", "Rivet::BeamPair *|std::pair<long,long > *|std::pair<Rivet::PdgId,Rivet::PdgId > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t = {"_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t", "std::vector<HepMC::GenParticle const *,std::allocator<HepMC::GenParticle const * > > *|std::vector<HepMC::GenParticle const * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__allocator_type = {"_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__allocator_type", "std::vector<HepMC::GenParticle const * >::allocator_type *|std::allocator<HepMC::GenParticle const * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type = {"_p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type", "HepMC::GenParticle **|std::vector<HepMC::GenParticle const * >::value_type *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t = {"_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t", "std::vector<HepMC::GenParticle *,std::allocator<HepMC::GenParticle * > > *|std::vector<HepMC::GenParticle * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__allocator_type = {"_p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__allocator_type", "std::vector<HepMC::GenParticle * >::allocator_type *|std::allocator<HepMC::GenParticle * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t = {"_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t", "std::vector<HepMC::GenVertex const *,std::allocator<HepMC::GenVertex const * > > *|std::vector<HepMC::GenVertex const * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__allocator_type = {"_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__allocator_type", "std::vector<HepMC::GenVertex const * >::allocator_type *|std::allocator<HepMC::GenVertex const * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type = {"_p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type", "std::vector<HepMC::GenVertex const * >::value_type *|HepMC::GenVertex **", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t = {"_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t", "std::vector<HepMC::GenVertex *,std::allocator<HepMC::GenVertex * > > *|std::vector<HepMC::GenVertex * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__allocator_type = {"_p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__allocator_type", "std::vector<HepMC::GenVertex * >::allocator_type *|std::allocator<HepMC::GenVertex * > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTRivet__HistoFormat_std__allocatorTRivet__HistoFormat_t_t = {"_p_std__vectorTRivet__HistoFormat_std__allocatorTRivet__HistoFormat_t_t", "Rivet::HistoFormatList *|std::vector<enum Rivet::HistoFormat,std::allocator<enum Rivet::HistoFormat > > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTRivet__Particle_std__allocatorTRivet__Particle_t_t = {"_p_std__vectorTRivet__Particle_std__allocatorTRivet__Particle_t_t", "std::vector<Rivet::Particle,std::allocator<Rivet::Particle > > *|Rivet::ParticleVector *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTlong_std__allocatorTlong_t_t = {"_p_std__vectorTlong_std__allocatorTlong_t_t", "std::vector<long,std::allocator<long > > *|Rivet::ParticleNameList *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTstd__string_std__allocatorTstd__string_t_t = {"_p_std__vectorTstd__string_std__allocatorTstd__string_t_t", "std::vector<std::string > *|std::vector<std::string,std::allocator<std::string > > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_std__vectorTstd__string_std__allocatorTstd__string_t_t__allocator_type = {"_p_std__vectorTstd__string_std__allocatorTstd__string_t_t__allocator_type", "std::vector<std::string >::allocator_type *|std::allocator<std::string > *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_swig__PySwigIterator = {"_p_swig__PySwigIterator", "swig::PySwigIterator *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_value_type = {"_p_value_type", "value_type *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type = {"_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type", "std::vector<HepMC::GenParticle const * >::value_type|HepMC::GenParticle *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type = {"_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type", "std::vector<HepMC::GenParticle * >::value_type|HepMC::GenParticle *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type = {"_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type", "std::vector<HepMC::GenVertex const * >::value_type|HepMC::GenVertex *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type = {"_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type", "std::vector<HepMC::GenVertex * >::value_type|HepMC::GenVertex *", 0, 0, (void*)0, 0}; + +static swig_type_info *swig_type_initial[] = { + &_swigt__p_ColorCodes, + &_swigt__p_Flow, + &_swigt__p_GenParticle, + &_swigt__p_GenVertex, + &_swigt__p_HeavyIon, + &_swigt__p_HepMC__FourVector, + &_swigt__p_HepMC__GenEvent, + &_swigt__p_HepMC__GenParticle, + &_swigt__p_HepMC__GenVertex, + &_swigt__p_HepMC__IO_BaseClass, + &_swigt__p_HepMC__IO_GenEvent, + &_swigt__p_HepMC__ThreeVector, + &_swigt__p_LevelMap, + &_swigt__p_LogMap, + &_swigt__p_ParticleDataTable, + &_swigt__p_PdfInfo, + &_swigt__p_Polarization, + &_swigt__p_Rivet__Analysis, + &_swigt__p_Rivet__AnalysisHandler, + &_swigt__p_Rivet__AnalysisLoader, + &_swigt__p_Rivet__Event, + &_swigt__p_Rivet__Log, + &_swigt__p_Rivet__Particle, + &_swigt__p_WeightContainer, + &_swigt__p_allocator_type, + &_swigt__p_char, + &_swigt__p_const_reference, + &_swigt__p_difference_type, + &_swigt__p_first_type, + &_swigt__p_key_type, + &_swigt__p_long, + &_swigt__p_mapped_type, + &_swigt__p_p_HepMC__GenEvent, + &_swigt__p_p_ParticleDataTable, + &_swigt__p_p_PyObject, + &_swigt__p_particles_in_const_iterator, + &_swigt__p_particles_out_const_iterator, + &_swigt__p_reference, + &_swigt__p_second_type, + &_swigt__p_size_type, + &_swigt__p_std__invalid_argument, + &_swigt__p_std__ios__openmode, + &_swigt__p_std__istream, + &_swigt__p_std__lessTstd__string_t, + &_swigt__p_std__mapTRivet__HistoFormat_std__string_std__lessTRivet__HistoFormat_t_std__allocatorTstd__pairTRivet__HistoFormat_const_std__string_t_t_t, + &_swigt__p_std__mapTlong_std__string_std__lessTlong_t_std__allocatorTstd__pairTlong_const_std__string_t_t_t, + &_swigt__p_std__mapTstd__string_Rivet__HistoFormat_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_Rivet__HistoFormat_t_t_t, + &_swigt__p_std__mapTstd__string_const_int_std__lessTstd__string_const_t_std__allocatorTstd__pairTstd__string_const_const_int_t_t_t, + &_swigt__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, + &_swigt__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t__allocator_type, + &_swigt__p_std__mapTstd__string_long_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_long_t_t_t, + &_swigt__p_std__ostream, + &_swigt__p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, + &_swigt__p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, + &_swigt__p_std__pairTRivet__Particle_Rivet__Particle_t, + &_swigt__p_std__pairTlong_long_t, + &_swigt__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, + &_swigt__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__allocator_type, + &_swigt__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, + &_swigt__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, + &_swigt__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__allocator_type, + &_swigt__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, + &_swigt__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__allocator_type, + &_swigt__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, + &_swigt__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, + &_swigt__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__allocator_type, + &_swigt__p_std__vectorTRivet__HistoFormat_std__allocatorTRivet__HistoFormat_t_t, + &_swigt__p_std__vectorTRivet__Particle_std__allocatorTRivet__Particle_t_t, + &_swigt__p_std__vectorTlong_std__allocatorTlong_t_t, + &_swigt__p_std__vectorTstd__string_std__allocatorTstd__string_t_t, + &_swigt__p_std__vectorTstd__string_std__allocatorTstd__string_t_t__allocator_type, + &_swigt__p_swig__PySwigIterator, + &_swigt__p_value_type, + &_swigt__std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, + &_swigt__std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, + &_swigt__std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, + &_swigt__std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, +}; + +static swig_cast_info _swigc__p_ColorCodes[] = { {&_swigt__p_ColorCodes, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_Flow[] = { {&_swigt__p_Flow, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_GenParticle[] = { {&_swigt__p_GenParticle, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_GenVertex[] = { {&_swigt__p_GenVertex, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_HeavyIon[] = { {&_swigt__p_HeavyIon, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_HepMC__FourVector[] = { {&_swigt__p_HepMC__FourVector, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_HepMC__GenEvent[] = { {&_swigt__p_HepMC__GenEvent, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_HepMC__GenParticle[] = { {&_swigt__std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0, 0, 0}, {&_swigt__std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0, 0, 0}, {&_swigt__p_HepMC__GenParticle, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_HepMC__GenVertex[] = { {&_swigt__p_HepMC__GenVertex, 0, 0, 0}, {&_swigt__std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0, 0, 0}, {&_swigt__std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_HepMC__IO_BaseClass[] = { {&_swigt__p_HepMC__IO_BaseClass, 0, 0, 0}, {&_swigt__p_HepMC__IO_GenEvent, _p_HepMC__IO_GenEventTo_p_HepMC__IO_BaseClass, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_HepMC__IO_GenEvent[] = { {&_swigt__p_HepMC__IO_GenEvent, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_HepMC__ThreeVector[] = { {&_swigt__p_HepMC__ThreeVector, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_LevelMap[] = { {&_swigt__p_LevelMap, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_LogMap[] = { {&_swigt__p_LogMap, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_ParticleDataTable[] = { {&_swigt__p_ParticleDataTable, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_PdfInfo[] = { {&_swigt__p_PdfInfo, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_Polarization[] = { {&_swigt__p_Polarization, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_Rivet__Analysis[] = { {&_swigt__p_Rivet__Analysis, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_Rivet__AnalysisHandler[] = { {&_swigt__p_Rivet__AnalysisHandler, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_Rivet__AnalysisLoader[] = { {&_swigt__p_Rivet__AnalysisLoader, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_Rivet__Event[] = { {&_swigt__p_Rivet__Event, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_Rivet__Log[] = { {&_swigt__p_Rivet__Log, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_Rivet__Particle[] = { {&_swigt__p_Rivet__Particle, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_WeightContainer[] = { {&_swigt__p_WeightContainer, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_allocator_type[] = { {&_swigt__p_allocator_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_const_reference[] = { {&_swigt__p_const_reference, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_difference_type[] = { {&_swigt__p_difference_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_first_type[] = { {&_swigt__p_first_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_key_type[] = { {&_swigt__p_key_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_long[] = { {&_swigt__p_long, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_mapped_type[] = { {&_swigt__p_mapped_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_p_HepMC__GenEvent[] = { {&_swigt__p_p_HepMC__GenEvent, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_p_ParticleDataTable[] = { {&_swigt__p_p_ParticleDataTable, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_p_PyObject[] = { {&_swigt__p_p_PyObject, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_particles_in_const_iterator[] = { {&_swigt__p_particles_in_const_iterator, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_particles_out_const_iterator[] = { {&_swigt__p_particles_out_const_iterator, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_reference[] = { {&_swigt__p_reference, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_second_type[] = { {&_swigt__p_second_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_size_type[] = { {&_swigt__p_size_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__invalid_argument[] = { {&_swigt__p_std__invalid_argument, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__ios__openmode[] = { {&_swigt__p_std__ios__openmode, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__istream[] = { {&_swigt__p_std__istream, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__lessTstd__string_t[] = { {&_swigt__p_std__lessTstd__string_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__mapTRivet__HistoFormat_std__string_std__lessTRivet__HistoFormat_t_std__allocatorTstd__pairTRivet__HistoFormat_const_std__string_t_t_t[] = { {&_swigt__p_std__mapTRivet__HistoFormat_std__string_std__lessTRivet__HistoFormat_t_std__allocatorTstd__pairTRivet__HistoFormat_const_std__string_t_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__mapTlong_std__string_std__lessTlong_t_std__allocatorTstd__pairTlong_const_std__string_t_t_t[] = { {&_swigt__p_std__mapTlong_std__string_std__lessTlong_t_std__allocatorTstd__pairTlong_const_std__string_t_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__mapTstd__string_Rivet__HistoFormat_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_Rivet__HistoFormat_t_t_t[] = { {&_swigt__p_std__mapTstd__string_Rivet__HistoFormat_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_Rivet__HistoFormat_t_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__mapTstd__string_const_int_std__lessTstd__string_const_t_std__allocatorTstd__pairTstd__string_const_const_int_t_t_t[] = { {&_swigt__p_std__mapTstd__string_const_int_std__lessTstd__string_const_t_std__allocatorTstd__pairTstd__string_const_const_int_t_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t[] = { {&_swigt__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t__allocator_type[] = { {&_swigt__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__mapTstd__string_long_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_long_t_t_t[] = { {&_swigt__p_std__mapTstd__string_long_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_long_t_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__ostream[] = { {&_swigt__p_std__ostream, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t[] = { {&_swigt__p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t[] = { {&_swigt__p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__pairTRivet__Particle_Rivet__Particle_t[] = { {&_swigt__p_std__pairTRivet__Particle_Rivet__Particle_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__pairTlong_long_t[] = { {&_swigt__p_std__pairTlong_long_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t[] = { {&_swigt__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__allocator_type[] = { {&_swigt__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type[] = { {&_swigt__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t[] = { {&_swigt__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__allocator_type[] = { {&_swigt__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t[] = { {&_swigt__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__allocator_type[] = { {&_swigt__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type[] = { {&_swigt__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t[] = { {&_swigt__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__allocator_type[] = { {&_swigt__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTRivet__HistoFormat_std__allocatorTRivet__HistoFormat_t_t[] = { {&_swigt__p_std__vectorTRivet__HistoFormat_std__allocatorTRivet__HistoFormat_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTRivet__Particle_std__allocatorTRivet__Particle_t_t[] = { {&_swigt__p_std__vectorTRivet__Particle_std__allocatorTRivet__Particle_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTlong_std__allocatorTlong_t_t[] = { {&_swigt__p_std__vectorTlong_std__allocatorTlong_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTstd__string_std__allocatorTstd__string_t_t[] = { {&_swigt__p_std__vectorTstd__string_std__allocatorTstd__string_t_t, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_std__vectorTstd__string_std__allocatorTstd__string_t_t__allocator_type[] = { {&_swigt__p_std__vectorTstd__string_std__allocatorTstd__string_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_swig__PySwigIterator[] = { {&_swigt__p_swig__PySwigIterator, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_value_type[] = { {&_swigt__p_value_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type[] = { {&_swigt__std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0, 0, 0}, {&_swigt__std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0, 0, 0}, {&_swigt__p_HepMC__GenParticle, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type[] = { {&_swigt__std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, 0, 0, 0}, {&_swigt__std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, 0, 0, 0}, {&_swigt__p_HepMC__GenParticle, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type[] = { {&_swigt__std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0, 0, 0}, {&_swigt__p_HepMC__GenVertex, 0, 0, 0}, {&_swigt__std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type[] = { {&_swigt__p_HepMC__GenVertex, 0, 0, 0}, {&_swigt__std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, 0, 0, 0}, {&_swigt__std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, 0, 0, 0},{0, 0, 0, 0}}; + +static swig_cast_info *swig_cast_initial[] = { + _swigc__p_ColorCodes, + _swigc__p_Flow, + _swigc__p_GenParticle, + _swigc__p_GenVertex, + _swigc__p_HeavyIon, + _swigc__p_HepMC__FourVector, + _swigc__p_HepMC__GenEvent, + _swigc__p_HepMC__GenParticle, + _swigc__p_HepMC__GenVertex, + _swigc__p_HepMC__IO_BaseClass, + _swigc__p_HepMC__IO_GenEvent, + _swigc__p_HepMC__ThreeVector, + _swigc__p_LevelMap, + _swigc__p_LogMap, + _swigc__p_ParticleDataTable, + _swigc__p_PdfInfo, + _swigc__p_Polarization, + _swigc__p_Rivet__Analysis, + _swigc__p_Rivet__AnalysisHandler, + _swigc__p_Rivet__AnalysisLoader, + _swigc__p_Rivet__Event, + _swigc__p_Rivet__Log, + _swigc__p_Rivet__Particle, + _swigc__p_WeightContainer, + _swigc__p_allocator_type, + _swigc__p_char, + _swigc__p_const_reference, + _swigc__p_difference_type, + _swigc__p_first_type, + _swigc__p_key_type, + _swigc__p_long, + _swigc__p_mapped_type, + _swigc__p_p_HepMC__GenEvent, + _swigc__p_p_ParticleDataTable, + _swigc__p_p_PyObject, + _swigc__p_particles_in_const_iterator, + _swigc__p_particles_out_const_iterator, + _swigc__p_reference, + _swigc__p_second_type, + _swigc__p_size_type, + _swigc__p_std__invalid_argument, + _swigc__p_std__ios__openmode, + _swigc__p_std__istream, + _swigc__p_std__lessTstd__string_t, + _swigc__p_std__mapTRivet__HistoFormat_std__string_std__lessTRivet__HistoFormat_t_std__allocatorTstd__pairTRivet__HistoFormat_const_std__string_t_t_t, + _swigc__p_std__mapTlong_std__string_std__lessTlong_t_std__allocatorTstd__pairTlong_const_std__string_t_t_t, + _swigc__p_std__mapTstd__string_Rivet__HistoFormat_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_Rivet__HistoFormat_t_t_t, + _swigc__p_std__mapTstd__string_const_int_std__lessTstd__string_const_t_std__allocatorTstd__pairTstd__string_const_const_int_t_t_t, + _swigc__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t, + _swigc__p_std__mapTstd__string_int_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_int_t_t_t__allocator_type, + _swigc__p_std__mapTstd__string_long_std__lessTstd__string_t_std__allocatorTstd__pairTstd__string_const_long_t_t_t, + _swigc__p_std__ostream, + _swigc__p_std__pairTHepMC__GenParticle_const_p_HepMC__GenParticle_const_p_t, + _swigc__p_std__pairTHepMC__GenParticle_p_HepMC__GenParticle_p_t, + _swigc__p_std__pairTRivet__Particle_Rivet__Particle_t, + _swigc__p_std__pairTlong_long_t, + _swigc__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t, + _swigc__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__allocator_type, + _swigc__p_std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, + _swigc__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t, + _swigc__p_std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__allocator_type, + _swigc__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t, + _swigc__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__allocator_type, + _swigc__p_std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, + _swigc__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t, + _swigc__p_std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__allocator_type, + _swigc__p_std__vectorTRivet__HistoFormat_std__allocatorTRivet__HistoFormat_t_t, + _swigc__p_std__vectorTRivet__Particle_std__allocatorTRivet__Particle_t_t, + _swigc__p_std__vectorTlong_std__allocatorTlong_t_t, + _swigc__p_std__vectorTstd__string_std__allocatorTstd__string_t_t, + _swigc__p_std__vectorTstd__string_std__allocatorTstd__string_t_t__allocator_type, + _swigc__p_swig__PySwigIterator, + _swigc__p_value_type, + _swigc__std__vectorTHepMC__GenParticle_const_p_std__allocatorTHepMC__GenParticle_const_p_t_t__value_type, + _swigc__std__vectorTHepMC__GenParticle_p_std__allocatorTHepMC__GenParticle_p_t_t__value_type, + _swigc__std__vectorTHepMC__GenVertex_const_p_std__allocatorTHepMC__GenVertex_const_p_t_t__value_type, + _swigc__std__vectorTHepMC__GenVertex_p_std__allocatorTHepMC__GenVertex_p_t_t__value_type, +}; + + +/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ + +static swig_const_info swig_const_table[] = { +{0, 0, 0, 0.0, 0, 0}}; + +#ifdef __cplusplus +} +#endif +/* ----------------------------------------------------------------------------- + * Type initialization: + * This problem is tough by the requirement that no dynamic + * memory is used. Also, since swig_type_info structures store pointers to + * swig_cast_info structures and swig_cast_info structures store pointers back + * to swig_type_info structures, we need some lookup code at initialization. + * The idea is that swig generates all the structures that are needed. + * The runtime then collects these partially filled structures. + * The SWIG_InitializeModule function takes these initial arrays out of + * swig_module, and does all the lookup, filling in the swig_module.types + * array with the correct data and linking the correct swig_cast_info + * structures together. + * + * The generated swig_type_info structures are assigned staticly to an initial + * array. We just loop through that array, and handle each type individually. + * First we lookup if this type has been already loaded, and if so, use the + * loaded structure instead of the generated one. Then we have to fill in the + * cast linked list. The cast data is initially stored in something like a + * two-dimensional array. Each row corresponds to a type (there are the same + * number of rows as there are in the swig_type_initial array). Each entry in + * a column is one of the swig_cast_info structures for that type. + * The cast_initial array is actually an array of arrays, because each row has + * a variable number of columns. So to actually build the cast linked list, + * we find the array of casts associated with the type, and loop through it + * adding the casts to the list. The one last trick we need to do is making + * sure the type pointer in the swig_cast_info struct is correct. + * + * First off, we lookup the cast->type name to see if it is already loaded. + * There are three cases to handle: + * 1) If the cast->type has already been loaded AND the type we are adding + * casting info to has not been loaded (it is in this module), THEN we + * replace the cast->type pointer with the type pointer that has already + * been loaded. + * 2) If BOTH types (the one we are adding casting info to, and the + * cast->type) are loaded, THEN the cast info has already been loaded by + * the previous module so we just ignore it. + * 3) Finally, if cast->type has not already been loaded, then we add that + * swig_cast_info to the linked list (because the cast->type) pointer will + * be correct. + * ----------------------------------------------------------------------------- */ + +#ifdef __cplusplus +extern "C" { +#if 0 +} /* c-mode */ +#endif +#endif + +#if 0 +#define SWIGRUNTIME_DEBUG +#endif + + +SWIGRUNTIME void +SWIG_InitializeModule(void *clientdata) { + size_t i; + swig_module_info *module_head, *iter; + int found; + + clientdata = clientdata; + + /* check to see if the circular list has been setup, if not, set it up */ + if (swig_module.next==0) { + /* Initialize the swig_module */ + swig_module.type_initial = swig_type_initial; + swig_module.cast_initial = swig_cast_initial; + swig_module.next = &swig_module; + } + + /* Try and load any already created modules */ + module_head = SWIG_GetModule(clientdata); + if (!module_head) { + /* This is the first module loaded for this interpreter */ + /* so set the swig module into the interpreter */ + SWIG_SetModule(clientdata, &swig_module); + module_head = &swig_module; + } else { + /* the interpreter has loaded a SWIG module, but has it loaded this one? */ + found=0; + iter=module_head; + do { + if (iter==&swig_module) { + found=1; + break; + } + iter=iter->next; + } while (iter!= module_head); + + /* if the is found in the list, then all is done and we may leave */ + if (found) return; + /* otherwise we must add out module into the list */ + swig_module.next = module_head->next; + module_head->next = &swig_module; + } + + /* Now work on filling in swig_module.types */ +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: size %d\n", swig_module.size); +#endif + for (i = 0; i < swig_module.size; ++i) { + swig_type_info *type = 0; + swig_type_info *ret; + swig_cast_info *cast; + +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); +#endif + + /* if there is another module already loaded */ + if (swig_module.next != &swig_module) { + type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); + } + if (type) { + /* Overwrite clientdata field */ +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: found type %s\n", type->name); +#endif + if (swig_module.type_initial[i]->clientdata) { + type->clientdata = swig_module.type_initial[i]->clientdata; +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); +#endif + } + } else { + type = swig_module.type_initial[i]; + } + + /* Insert casting types */ + cast = swig_module.cast_initial[i]; + while (cast->type) { + /* Don't need to add information already in the list */ + ret = 0; +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); +#endif + if (swig_module.next != &swig_module) { + ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); +#ifdef SWIGRUNTIME_DEBUG + if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); +#endif + } + if (ret) { + if (type == swig_module.type_initial[i]) { +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: skip old type %s\n", ret->name); +#endif + cast->type = ret; + ret = 0; + } else { + /* Check for casting already in the list */ + swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); +#ifdef SWIGRUNTIME_DEBUG + if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); +#endif + if (!ocast) ret = 0; + } + } + + if (!ret) { +#ifdef SWIGRUNTIME_DEBUG + printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); +#endif + if (type->cast) { + type->cast->prev = cast; + cast->next = type->cast; + } + type->cast = cast; + } + cast++; + } + /* Set entry in modules->types array equal to the type */ + swig_module.types[i] = type; + } + swig_module.types[i] = 0; + +#ifdef SWIGRUNTIME_DEBUG + printf("**** SWIG_InitializeModule: Cast List ******\n"); + for (i = 0; i < swig_module.size; ++i) { + int j = 0; + swig_cast_info *cast = swig_module.cast_initial[i]; + printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); + while (cast->type) { + printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); + cast++; + ++j; + } + printf("---- Total casts: %d\n",j); + } + printf("**** SWIG_InitializeModule: Cast List ******\n"); +#endif +} + +/* This function will propagate the clientdata field of type to +* any new swig_type_info structures that have been added into the list +* of equivalent types. It is like calling +* SWIG_TypeClientData(type, clientdata) a second time. +*/ +SWIGRUNTIME void +SWIG_PropagateClientData(void) { + size_t i; + swig_cast_info *equiv; + static int init_run = 0; + + if (init_run) return; + init_run = 1; + + for (i = 0; i < swig_module.size; i++) { + if (swig_module.types[i]->clientdata) { + equiv = swig_module.types[i]->cast; + while (equiv) { + if (!equiv->converter) { + if (equiv->type && !equiv->type->clientdata) + SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); + } + equiv = equiv->next; + } + } + } +} + +#ifdef __cplusplus +#if 0 +{ + /* c-mode */ +#endif +} +#endif + + + +#ifdef __cplusplus +extern "C" { +#endif + + /* Python-specific SWIG API */ +#define SWIG_newvarlink() SWIG_Python_newvarlink() +#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) +#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants) + + /* ----------------------------------------------------------------------------- + * global variable support code. + * ----------------------------------------------------------------------------- */ + + typedef struct swig_globalvar { + char *name; /* Name of global variable */ + PyObject *(*get_attr)(void); /* Return the current value */ + int (*set_attr)(PyObject *); /* Set the value */ + struct swig_globalvar *next; + } swig_globalvar; + + typedef struct swig_varlinkobject { + PyObject_HEAD + swig_globalvar *vars; + } swig_varlinkobject; + + SWIGINTERN PyObject * + swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) { + return PyString_FromString("<Swig global variables>"); + } + + SWIGINTERN PyObject * + swig_varlink_str(swig_varlinkobject *v) { + PyObject *str = PyString_FromString("("); + swig_globalvar *var; + for (var = v->vars; var; var=var->next) { + PyString_ConcatAndDel(&str,PyString_FromString(var->name)); + if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); + } + PyString_ConcatAndDel(&str,PyString_FromString(")")); + return str; + } + + SWIGINTERN int + swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { + PyObject *str = swig_varlink_str(v); + fprintf(fp,"Swig global variables "); + fprintf(fp,"%s\n", PyString_AsString(str)); + Py_DECREF(str); + return 0; + } + + SWIGINTERN void + swig_varlink_dealloc(swig_varlinkobject *v) { + swig_globalvar *var = v->vars; + while (var) { + swig_globalvar *n = var->next; + free(var->name); + free(var); + var = n; + } + } + + SWIGINTERN PyObject * + swig_varlink_getattr(swig_varlinkobject *v, char *n) { + PyObject *res = NULL; + swig_globalvar *var = v->vars; + while (var) { + if (strcmp(var->name,n) == 0) { + res = (*var->get_attr)(); + break; + } + var = var->next; + } + if (res == NULL && !PyErr_Occurred()) { + PyErr_SetString(PyExc_NameError,"Unknown C global variable"); + } + return res; + } + + SWIGINTERN int + swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) { + int res = 1; + swig_globalvar *var = v->vars; + while (var) { + if (strcmp(var->name,n) == 0) { + res = (*var->set_attr)(p); + break; + } + var = var->next; + } + if (res == 1 && !PyErr_Occurred()) { + PyErr_SetString(PyExc_NameError,"Unknown C global variable"); + } + return res; + } + + SWIGINTERN PyTypeObject* + swig_varlink_type(void) { + static char varlink__doc__[] = "Swig var link object"; + static PyTypeObject varlink_type; + static int type_init = 0; + if (!type_init) { + const PyTypeObject tmp + = { + PyObject_HEAD_INIT(NULL) + 0, /* Number of items in variable part (ob_size) */ + (char *)"swigvarlink", /* Type name (tp_name) */ + sizeof(swig_varlinkobject), /* Basic size (tp_basicsize) */ + 0, /* Itemsize (tp_itemsize) */ + (destructor) swig_varlink_dealloc, /* Deallocator (tp_dealloc) */ + (printfunc) swig_varlink_print, /* Print (tp_print) */ + (getattrfunc) swig_varlink_getattr, /* get attr (tp_getattr) */ + (setattrfunc) swig_varlink_setattr, /* Set attr (tp_setattr) */ + 0, /* tp_compare */ + (reprfunc) swig_varlink_repr, /* tp_repr */ + 0, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + 0, /* tp_hash */ + 0, /* tp_call */ + (reprfunc)swig_varlink_str, /* tp_str */ + 0, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + 0, /* tp_flags */ + varlink__doc__, /* tp_doc */ + 0, /* tp_traverse */ + 0, /* tp_clear */ + 0, /* tp_richcompare */ + 0, /* tp_weaklistoffset */ +#if PY_VERSION_HEX >= 0x02020000 + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ +#endif +#if PY_VERSION_HEX >= 0x02030000 + 0, /* tp_del */ +#endif +#ifdef COUNT_ALLOCS + 0,0,0,0 /* tp_alloc -> tp_next */ +#endif + }; + varlink_type = tmp; + varlink_type.ob_type = &PyType_Type; + type_init = 1; + } + return &varlink_type; + } + + /* Create a variable linking object for use later */ + SWIGINTERN PyObject * + SWIG_Python_newvarlink(void) { + swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); + if (result) { + result->vars = 0; + } + return ((PyObject*) result); + } + + SWIGINTERN void + SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) { + swig_varlinkobject *v = (swig_varlinkobject *) p; + swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar)); + if (gv) { + size_t size = strlen(name)+1; + gv->name = (char *)malloc(size); + if (gv->name) { + strncpy(gv->name,name,size); + gv->get_attr = get_attr; + gv->set_attr = set_attr; + gv->next = v->vars; + } + } + v->vars = gv; + } + + SWIGINTERN PyObject * + SWIG_globals(void) { + static PyObject *_SWIG_globals = 0; + if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink(); + return _SWIG_globals; + } + + /* ----------------------------------------------------------------------------- + * constants/methods manipulation + * ----------------------------------------------------------------------------- */ + + /* Install Constants */ + SWIGINTERN void + SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) { + PyObject *obj = 0; + size_t i; + for (i = 0; constants[i].type; ++i) { + switch(constants[i].type) { + case SWIG_PY_POINTER: + obj = SWIG_NewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0); + break; + case SWIG_PY_BINARY: + obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype)); + break; + default: + obj = 0; + break; + } + if (obj) { + PyDict_SetItemString(d, constants[i].name, obj); + Py_DECREF(obj); + } + } + } + + /* -----------------------------------------------------------------------------*/ + /* Fix SwigMethods to carry the callback ptrs when needed */ + /* -----------------------------------------------------------------------------*/ + + SWIGINTERN void + SWIG_Python_FixMethods(PyMethodDef *methods, + swig_const_info *const_table, + swig_type_info **types, + swig_type_info **types_initial) { + size_t i; + for (i = 0; methods[i].ml_name; ++i) { + const char *c = methods[i].ml_doc; + if (c && (c = strstr(c, "swig_ptr: "))) { + int j; + swig_const_info *ci = 0; + const char *name = c + 10; + for (j = 0; const_table[j].type; ++j) { + if (strncmp(const_table[j].name, name, + strlen(const_table[j].name)) == 0) { + ci = &(const_table[j]); + break; + } + } + if (ci) { + size_t shift = (ci->ptype) - types; + swig_type_info *ty = types_initial[shift]; + size_t ldoc = (c - methods[i].ml_doc); + size_t lptr = strlen(ty->name)+2*sizeof(void*)+2; + char *ndoc = (char*)malloc(ldoc + lptr + 10); + if (ndoc) { + char *buff = ndoc; + void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0; + if (ptr) { + strncpy(buff, methods[i].ml_doc, ldoc); + buff += ldoc; + strncpy(buff, "swig_ptr: ", 10); + buff += 10; + SWIG_PackVoidPtr(buff, ptr, ty->name, lptr); + methods[i].ml_doc = ndoc; + } + } + } + } + } + } + +#ifdef __cplusplus +} +#endif + +/* -----------------------------------------------------------------------------* + * Partial Init method + * -----------------------------------------------------------------------------*/ + +#ifdef __cplusplus +extern "C" +#endif +SWIGEXPORT void SWIG_init(void) { + PyObject *m, *d; + + /* Fix SwigMethods to carry the callback ptrs when needed */ + SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); + + m = Py_InitModule((char *) SWIG_name, SwigMethods); + d = PyModule_GetDict(m); + + SWIG_InitializeModule(0); + SWIG_InstallConstants(d,swig_const_table); + + + SWIG_Python_SetConstant(d, "parents",SWIG_From_int(static_cast< int >(HepMC::parents))); + SWIG_Python_SetConstant(d, "children",SWIG_From_int(static_cast< int >(HepMC::children))); + SWIG_Python_SetConstant(d, "family",SWIG_From_int(static_cast< int >(HepMC::family))); + SWIG_Python_SetConstant(d, "ancestors",SWIG_From_int(static_cast< int >(HepMC::ancestors))); + SWIG_Python_SetConstant(d, "descendants",SWIG_From_int(static_cast< int >(HepMC::descendants))); + SWIG_Python_SetConstant(d, "relatives",SWIG_From_int(static_cast< int >(HepMC::relatives))); + SWIG_Python_SetConstant(d, "AIDAML",SWIG_From_int(static_cast< int >(Rivet::AIDAML))); + SWIG_Python_SetConstant(d, "FLAT",SWIG_From_int(static_cast< int >(Rivet::FLAT))); + SWIG_Python_SetConstant(d, "ROOT",SWIG_From_int(static_cast< int >(Rivet::ROOT))); + SWIG_Python_SetConstant(d, "ELECTRON",SWIG_From_int(static_cast< int >(Rivet::ELECTRON))); + SWIG_Python_SetConstant(d, "POSITRON",SWIG_From_int(static_cast< int >(Rivet::POSITRON))); + SWIG_Python_SetConstant(d, "PROTON",SWIG_From_int(static_cast< int >(Rivet::PROTON))); + SWIG_Python_SetConstant(d, "ANTIPROTON",SWIG_From_int(static_cast< int >(Rivet::ANTIPROTON))); + SWIG_Python_SetConstant(d, "PHOTON",SWIG_From_int(static_cast< int >(Rivet::PHOTON))); + SWIG_Python_SetConstant(d, "NEUTRON",SWIG_From_int(static_cast< int >(Rivet::NEUTRON))); + SWIG_Python_SetConstant(d, "ANTINEUTRON",SWIG_From_int(static_cast< int >(Rivet::ANTINEUTRON))); + SWIG_Python_SetConstant(d, "MUON",SWIG_From_int(static_cast< int >(Rivet::MUON))); + SWIG_Python_SetConstant(d, "ANTIMUON",SWIG_From_int(static_cast< int >(Rivet::ANTIMUON))); + SWIG_Python_SetConstant(d, "NU_E",SWIG_From_int(static_cast< int >(Rivet::NU_E))); + SWIG_Python_SetConstant(d, "NU_EBAR",SWIG_From_int(static_cast< int >(Rivet::NU_EBAR))); + SWIG_Python_SetConstant(d, "NU_MU",SWIG_From_int(static_cast< int >(Rivet::NU_MU))); + SWIG_Python_SetConstant(d, "NU_MUBAR",SWIG_From_int(static_cast< int >(Rivet::NU_MUBAR))); + SWIG_Python_SetConstant(d, "NU_TAU",SWIG_From_int(static_cast< int >(Rivet::NU_TAU))); + SWIG_Python_SetConstant(d, "NU_TAUBAR",SWIG_From_int(static_cast< int >(Rivet::NU_TAUBAR))); + SWIG_Python_SetConstant(d, "PIPLUS",SWIG_From_int(static_cast< int >(Rivet::PIPLUS))); + SWIG_Python_SetConstant(d, "PIMINUS",SWIG_From_int(static_cast< int >(Rivet::PIMINUS))); + SWIG_Python_SetConstant(d, "TAU",SWIG_From_int(static_cast< int >(Rivet::TAU))); + SWIG_Python_SetConstant(d, "ANTITAU",SWIG_From_int(static_cast< int >(Rivet::ANTITAU))); + SWIG_Python_SetConstant(d, "EMINUS",SWIG_From_int(static_cast< int >(Rivet::EMINUS))); + SWIG_Python_SetConstant(d, "EPLUS",SWIG_From_int(static_cast< int >(Rivet::EPLUS))); + SWIG_Python_SetConstant(d, "P",SWIG_From_int(static_cast< int >(Rivet::P))); + SWIG_Python_SetConstant(d, "PBAR",SWIG_From_int(static_cast< int >(Rivet::PBAR))); + SWIG_Python_SetConstant(d, "GLUON",SWIG_From_int(static_cast< int >(Rivet::GLUON))); + SWIG_Python_SetConstant(d, "GAMMA",SWIG_From_int(static_cast< int >(Rivet::GAMMA))); + SWIG_Python_SetConstant(d, "WPLUSBOSON",SWIG_From_int(static_cast< int >(Rivet::WPLUSBOSON))); + SWIG_Python_SetConstant(d, "WMINUSBOSON",SWIG_From_int(static_cast< int >(Rivet::WMINUSBOSON))); + SWIG_Python_SetConstant(d, "ZBOSON",SWIG_From_int(static_cast< int >(Rivet::ZBOSON))); + SWIG_Python_SetConstant(d, "HIGGS",SWIG_From_int(static_cast< int >(Rivet::HIGGS))); + SWIG_Python_SetConstant(d, "DQUARK",SWIG_From_int(static_cast< int >(Rivet::DQUARK))); + SWIG_Python_SetConstant(d, "UQUARK",SWIG_From_int(static_cast< int >(Rivet::UQUARK))); + SWIG_Python_SetConstant(d, "SQUARK",SWIG_From_int(static_cast< int >(Rivet::SQUARK))); + SWIG_Python_SetConstant(d, "CQUARK",SWIG_From_int(static_cast< int >(Rivet::CQUARK))); + SWIG_Python_SetConstant(d, "BQUARK",SWIG_From_int(static_cast< int >(Rivet::BQUARK))); + SWIG_Python_SetConstant(d, "TQUARK",SWIG_From_int(static_cast< int >(Rivet::TQUARK))); + SWIG_Python_SetConstant(d, "ANY",SWIG_From_int(static_cast< int >(Rivet::ANY))); + SWIG_Python_SetConstant(d, "PHOTOELECTRON",SWIG_From_int(static_cast< int >(Rivet::PHOTOELECTRON))); + SWIG_Python_SetConstant(d, "PHOTOPOSITRON",SWIG_From_int(static_cast< int >(Rivet::PHOTOPOSITRON))); + SWIG_Python_SetConstant(d, "PHOTOMUON",SWIG_From_int(static_cast< int >(Rivet::PHOTOMUON))); + SWIG_Python_SetConstant(d, "PHOTOANTIMUON",SWIG_From_int(static_cast< int >(Rivet::PHOTOANTIMUON))); + SWIG_Python_SetConstant(d, "PHOTOTAU",SWIG_From_int(static_cast< int >(Rivet::PHOTOTAU))); + SWIG_Python_SetConstant(d, "PHOTOANTITAU",SWIG_From_int(static_cast< int >(Rivet::PHOTOANTITAU))); + SWIG_Python_SetConstant(d, "Log_TRACE",SWIG_From_int(static_cast< int >(Rivet::Log::TRACE))); + SWIG_Python_SetConstant(d, "Log_DEBUG",SWIG_From_int(static_cast< int >(Rivet::Log::DEBUG))); + SWIG_Python_SetConstant(d, "Log_INFO",SWIG_From_int(static_cast< int >(Rivet::Log::INFO))); + SWIG_Python_SetConstant(d, "Log_WARN",SWIG_From_int(static_cast< int >(Rivet::Log::WARN))); + SWIG_Python_SetConstant(d, "Log_ERROR",SWIG_From_int(static_cast< int >(Rivet::Log::ERROR))); +} +
More information about the Rivet-svn mailing list |