Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // >> 26 // $Id: G4QGSBuilder.cc 66892 2013-01-17 10:57:59Z gunter $ 26 // 27 // 27 //-------------------------------------------- 28 //--------------------------------------------------------------------------- 28 // 29 // 29 // ClassName: G4QGSBuilder 30 // ClassName: G4QGSBuilder 30 // 31 // 31 // Author: 28 June 2009 V.Ivanchenko 32 // Author: 28 June 2009 V.Ivanchenko 32 // 33 // 33 // Modified: 34 // Modified: 34 // 35 // 35 //-------------------------------------------- 36 //---------------------------------------------------------------------------- 36 // 37 // 37 38 38 #include "G4QGSBuilder.hh" 39 #include "G4QGSBuilder.hh" 39 #include "G4ExcitedStringDecay.hh" 40 #include "G4ExcitedStringDecay.hh" 40 #include "G4QuasiElasticChannel.hh" 41 #include "G4QuasiElasticChannel.hh" 41 #include "G4TheoFSGenerator.hh" 42 #include "G4TheoFSGenerator.hh" 42 #include "G4GeneratorPrecompoundInterface.hh" 43 #include "G4GeneratorPrecompoundInterface.hh" 43 #include "G4QGSMFragmentation.hh" 44 #include "G4QGSMFragmentation.hh" 44 #include "G4ExcitedStringDecay.hh" 45 #include "G4ExcitedStringDecay.hh" 45 #include "G4BinaryCascade.hh" 46 #include "G4BinaryCascade.hh" 46 #include "G4PreCompoundModel.hh" 47 #include "G4PreCompoundModel.hh" 47 #include "G4ExcitationHandler.hh" 48 #include "G4ExcitationHandler.hh" 48 #include "G4HadronicParameters.hh" << 49 #include "G4QGSModel.hh" << 50 #include "G4QGSParticipants.hh" << 51 49 52 G4QGSBuilder::G4QGSBuilder(const G4String& aNa << 50 >> 51 G4QGSBuilder::G4QGSBuilder(const G4String& aName, G4PreCompoundModel* p, 53 G4bool quasiel) 52 G4bool quasiel) 54 : G4VHadronModelBuilder(aName), 53 : G4VHadronModelBuilder(aName), >> 54 theQGStringModel(0), theQGStringDecay(0), theQuasiElastic(0), >> 55 thePreCompound(p),theQGSM(0), 55 quasielFlag(quasiel) 56 quasielFlag(quasiel) 56 {} 57 {} 57 58 58 G4QGSBuilder::~G4QGSBuilder() 59 G4QGSBuilder::~G4QGSBuilder() 59 {} << 60 { >> 61 delete theQuasiElastic; >> 62 delete theQGStringDecay; >> 63 delete theQGStringModel; >> 64 delete theQGSM; >> 65 } 60 66 61 G4HadronicInteraction* G4QGSBuilder::BuildMode 67 G4HadronicInteraction* G4QGSBuilder::BuildModel() 62 { 68 { 63 G4double theMin = G4HadronicParameters::Inst << 69 G4TheoFSGenerator* theQGSModel = new G4TheoFSGenerator(GetName()); 64 G4double theMax = G4HadronicParameters::Inst << 70 theQGStringModel = new G4QGSModel< G4QGSParticipants >; 65 G4TheoFSGenerator* theModel = new G4TheoFSGe << 71 theQGSM = new G4QGSMFragmentation(); 66 theModel->SetMinEnergy(theMin); << 72 theQGStringDecay = new G4ExcitedStringDecay(theQGSM); 67 theModel->SetMaxEnergy(theMax); << 73 theQGStringModel->SetFragmentationModel(theQGStringDecay); 68 << 74 theQGSModel->SetHighEnergyGenerator(theQGStringModel); 69 G4QGSModel< G4QGSParticipants >* theStringMo << 75 70 new G4QGSModel< G4QGSParticipants >; << 76 if(quasielFlag) { 71 G4ExcitedStringDecay* theStringDecay = << 77 theQuasiElastic = new G4QuasiElasticChannel(); 72 new G4ExcitedStringDecay(new G4QGSMFragmen << 78 theQGSModel->SetQuasiElasticChannel(theQuasiElastic); 73 theStringModel->SetFragmentationModel(theStr << 79 } 74 << 80 75 theModel->SetHighEnergyGenerator(theStringMo << 81 if(!thePreCompound) { 76 if (quasielFlag) << 82 thePreCompound = new G4PreCompoundModel(new G4ExcitationHandler()); 77 { << 83 } 78 theModel->SetQuasiElasticChannel(new G4Q << 79 } << 80 84 81 if(GetName() == "QGSB") { 85 if(GetName() == "QGSB") { 82 theModel->SetTransport(new G4BinaryCascade << 86 G4BinaryCascade* bic = new G4BinaryCascade(); >> 87 bic->SetDeExcitation(thePreCompound); >> 88 theQGSModel->SetTransport(bic); >> 89 83 } else { 90 } else { 84 theModel->SetTransport(new G4GeneratorPrec << 91 G4GeneratorPrecompoundInterface* pint = new G4GeneratorPrecompoundInterface(); >> 92 pint->SetDeExcitation(thePreCompound); >> 93 theQGSModel->SetTransport(pint); 85 } 94 } 86 95 87 return theModel; << 96 return theQGSModel; 88 } 97 } 89 << 90 98