| 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | //
|
|---|
| 27 | // $Id: G4CollisionNNToDeltaNstar.cc,v 1.3.2.2 2006/06/29 20:39:00 gunter Exp $ //
|
|---|
| 28 |
|
|---|
| 29 | #include "globals.hh"
|
|---|
| 30 | #include "G4CollisionNNToDeltaNstar.hh"
|
|---|
| 31 | #include "G4ConcreteNNToDeltaNstar.hh"
|
|---|
| 32 | #include "G4HadParticleCodes.hh"
|
|---|
| 33 | #include "G4Pair.hh"
|
|---|
| 34 |
|
|---|
| 35 | typedef G4ConcreteNNToDeltaNstar channelType;
|
|---|
| 36 |
|
|---|
| 37 | G4CollisionNNToDeltaNstar::G4CollisionNNToDeltaNstar()
|
|---|
| 38 | {
|
|---|
| 39 | MakeNNToDeltaNstar<N1400pPC, channelType, N1400nPC>::Make(this);
|
|---|
| 40 | MakeNNToDeltaNstar<N1520pPC, channelType, N1520nPC>::Make(this);
|
|---|
| 41 | MakeNNToDeltaNstar<N1535pPC, channelType, N1535nPC>::Make(this);
|
|---|
| 42 | MakeNNToDeltaNstar<N1650pPC, channelType, N1650nPC>::Make(this);
|
|---|
| 43 | MakeNNToDeltaNstar<N1675pPC, channelType, N1675nPC>::Make(this);
|
|---|
| 44 | MakeNNToDeltaNstar<N1680pPC, channelType, N1680nPC>::Make(this);
|
|---|
| 45 | MakeNNToDeltaNstar<N1700pPC, channelType, N1700nPC>::Make(this);
|
|---|
| 46 | MakeNNToDeltaNstar<N1710pPC, channelType, N1710nPC>::Make(this);
|
|---|
| 47 | MakeNNToDeltaNstar<N1720pPC, channelType, N1720nPC>::Make(this);
|
|---|
| 48 | MakeNNToDeltaNstar<N1900pPC, channelType, N1900nPC>::Make(this);
|
|---|
| 49 | MakeNNToDeltaNstar<N1990pPC, channelType, N1990nPC>::Make(this);
|
|---|
| 50 | MakeNNToDeltaNstar<N2090pPC, channelType, N2090nPC>::Make(this);
|
|---|
| 51 | MakeNNToDeltaNstar<N2190pPC, channelType, N2190nPC>::Make(this);
|
|---|
| 52 | MakeNNToDeltaNstar<N2220pPC, channelType, N2220nPC>::Make(this);
|
|---|
| 53 | MakeNNToDeltaNstar<N2250pPC, channelType, N2250nPC>::Make(this);
|
|---|
| 54 | }
|
|---|
| 55 |
|
|---|