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$ 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" >> 42 #include "G4ProjectileDiffractiveChannel.hh" 41 #include "G4TheoFSGenerator.hh" 43 #include "G4TheoFSGenerator.hh" >> 44 #include "G4QStringChipsParticleLevelInterface.hh" 42 #include "G4GeneratorPrecompoundInterface.hh" 45 #include "G4GeneratorPrecompoundInterface.hh" 43 #include "G4QGSMFragmentation.hh" 46 #include "G4QGSMFragmentation.hh" 44 #include "G4ExcitedStringDecay.hh" 47 #include "G4ExcitedStringDecay.hh" 45 #include "G4BinaryCascade.hh" 48 #include "G4BinaryCascade.hh" 46 #include "G4PreCompoundModel.hh" 49 #include "G4PreCompoundModel.hh" 47 #include "G4ExcitationHandler.hh" 50 #include "G4ExcitationHandler.hh" 48 #include "G4HadronicParameters.hh" << 49 #include "G4QGSModel.hh" << 50 #include "G4QGSParticipants.hh" << 51 51 52 G4QGSBuilder::G4QGSBuilder(const G4String& aNa << 52 53 G4bool quasiel) << 53 G4QGSBuilder::G4QGSBuilder(const G4String& aName, G4PreCompoundModel* p, >> 54 G4bool quasiel, G4bool diff) 54 : G4VHadronModelBuilder(aName), 55 : G4VHadronModelBuilder(aName), 55 quasielFlag(quasiel) << 56 theQGStringModel(0), theQGStringDecay(0), theQuasiElastic(0), >> 57 theProjectileDiffraction(0),thePreCompound(p),theQGSM(0), >> 58 quasielFlag(quasiel), diffFlag(diff) 56 {} 59 {} 57 60 58 G4QGSBuilder::~G4QGSBuilder() 61 G4QGSBuilder::~G4QGSBuilder() 59 {} << 62 { >> 63 delete theProjectileDiffraction; >> 64 delete theQuasiElastic; >> 65 delete theQGStringDecay; >> 66 delete theQGStringModel; >> 67 delete theQGSM; >> 68 } 60 69 61 G4HadronicInteraction* G4QGSBuilder::BuildMode 70 G4HadronicInteraction* G4QGSBuilder::BuildModel() 62 { 71 { 63 G4double theMin = G4HadronicParameters::Inst << 72 G4TheoFSGenerator* theQGSModel = new G4TheoFSGenerator(GetName()); 64 G4double theMax = G4HadronicParameters::Inst << 73 theQGStringModel = new G4QGSModel< G4QGSParticipants >; 65 G4TheoFSGenerator* theModel = new G4TheoFSGe << 74 theQGSM = new G4QGSMFragmentation(); 66 theModel->SetMinEnergy(theMin); << 75 theQGStringDecay = new G4ExcitedStringDecay(theQGSM); 67 theModel->SetMaxEnergy(theMax); << 76 theQGStringModel->SetFragmentationModel(theQGStringDecay); 68 << 77 theQGSModel->SetHighEnergyGenerator(theQGStringModel); 69 G4QGSModel< G4QGSParticipants >* theStringMo << 78 70 new G4QGSModel< G4QGSParticipants >; << 79 if(quasielFlag) { 71 G4ExcitedStringDecay* theStringDecay = << 80 theQuasiElastic = new G4QuasiElasticChannel(); 72 new G4ExcitedStringDecay(new G4QGSMFragmen << 81 theQGSModel->SetQuasiElasticChannel(theQuasiElastic); 73 theStringModel->SetFragmentationModel(theStr << 82 } 74 << 83 if ( diffFlag ) { 75 theModel->SetHighEnergyGenerator(theStringMo << 84 theProjectileDiffraction = new G4ProjectileDiffractiveChannel(); 76 if (quasielFlag) << 85 theQGSModel->SetProjectileDiffraction(theProjectileDiffraction); 77 { << 86 } 78 theModel->SetQuasiElasticChannel(new G4Q << 87 79 } << 88 if(!thePreCompound) { >> 89 thePreCompound = new G4PreCompoundModel(new G4ExcitationHandler()); >> 90 } >> 91 >> 92 if(GetName() == "QGSC") { >> 93 theQGSModel->SetTransport(new G4QStringChipsParticleLevelInterface()); >> 94 >> 95 } else if(GetName() == "QGSB") { >> 96 G4BinaryCascade* bic = new G4BinaryCascade(); >> 97 bic->SetDeExcitation(thePreCompound); >> 98 theQGSModel->SetTransport(bic); 80 99 81 if(GetName() == "QGSB") { << 82 theModel->SetTransport(new G4BinaryCascade << 83 } else { 100 } else { 84 theModel->SetTransport(new G4GeneratorPrec << 101 G4GeneratorPrecompoundInterface* pint = new G4GeneratorPrecompoundInterface(); >> 102 pint->SetDeExcitation(thePreCompound); >> 103 theQGSModel->SetTransport(pint); 85 } 104 } 86 105 87 return theModel; << 106 return theQGSModel; 88 } 107 } 89 << 90 108