Warning, /include/ThePEG/EventRecord/SubProcess.tcc is written in an unsupported language. File is not indexed.
0001 // -*- C++ -*-
0002 //
0003 // SubProcess.tcc is a part of ThePEG - Toolkit for HEP Event Generation
0004 // Copyright (C) 1999-2019 Leif Lonnblad
0005 //
0006 // ThePEG is licenced under version 3 of the GPL, see COPYING for details.
0007 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
0008 //
0009 //
0010 // This is the implementation of the non-inlined templated member
0011 // functions of the SubProcess class.
0012 //
0013
0014 namespace ThePEG {
0015
0016 template <class InputIterator>
0017 void SubProcess::setIntermediates(InputIterator first, InputIterator last) {
0018 theIntermediates = ParticleVector(first, last);
0019 }
0020
0021 template <class InputIterator>
0022 void SubProcess::setOutgoing(InputIterator first, InputIterator last) {
0023 theOutgoing = ParticleVector(first, last);
0024 }
0025
0026 }