Ignore:
Timestamp:
Feb 16, 2009, 10:14:30 AM (15 years ago)
Author:
garnier
Message:

en test de gl2ps. Problemes de libraries

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/documents/UserDoc/DocBookUsersGuides/ForApplicationDeveloper/xml/TrackingAndPhysics/physicsProcess.xml

    r904 r921  
    360360
    361361<para>
    362 This section summarizes the electromagnetic physics processes which
    363 are installed in Geant4. For details on the implementation of these
     362This section summarizes the electromagnetic (EM) physics processes which
     363are provided with Geant4. Extended information are avalable at EM web
     364<ulink url="http://geant4.web.cern.ch/geant4/collaboration/EMindex.shtml">
     365<emphasis role="bold">pages</emphasis></ulink>.   
     366For details on the implementation of these
    364367processes please refer to the
    365368<ulink url="http://geant4.web.cern.ch/geant4/UserDocumentation/UsersGuides/PhysicsReferenceManual/html/PhysicsReferenceManual.html">
     
    407410      </para></listitem>
    408411      <listitem><para>
     412        Multiple scattering (class name <emphasis>G4eMultipleScattering</emphasis>)
     413      </para></listitem>
     414      <listitem><para>
    409415        Positron annihilation into two gammas (class name
    410416        <emphasis>G4eplusAnnihilation</emphasis>)
     
    424430    <itemizedlist spacing="compact">
    425431      <listitem><para>
     432        Bremsstrahlung (class name <emphasis>G4MuBremsstrahlung</emphasis>)
     433      </para></listitem>
     434      <listitem><para>
    426435        Ionisation and delta ray production (class name
    427436        <emphasis>G4MuIonisation</emphasis>)
    428437      </para></listitem>
    429438      <listitem><para>
    430         Bremsstrahlung (class name <emphasis>G4MuBremsstrahlung</emphasis>)
     439        Multiple scattering (class name <emphasis>G4MuMultipleScattering</emphasis>)
    431440      </para></listitem>
    432441      <listitem><para>
     
    440449    <itemizedlist spacing="compact">
    441450      <listitem><para>
     451        Bremsstrahlung (class name <emphasis>G4hBremsstrahlung</emphasis>)
     452      </para></listitem>
     453      <listitem><para>
    442454        Ionisation (class name <emphasis>G4hIonisation</emphasis>)
    443455      </para></listitem>
    444456      <listitem><para>
     457        e+e- pair production (class name <emphasis>G4hPairProduction</emphasis>)
     458      </para></listitem>
     459      <listitem><para>
    445460        Ionisation for ions (class name <emphasis>G4ionIonisation</emphasis>)
    446461      </para></listitem>
    447462      <listitem><para>
    448         Ionisation for ions in low-density media (class name <emphasis>G4ionGasIonisation</emphasis>)
     463        Multiple scattering (class name <emphasis>G4hMultipleScattering</emphasis>)
    449464      </para></listitem>
    450465      <listitem><para>
     
    465480        is used to simulate the multiple scattering of the all charged
    466481        particles  (class name <emphasis>G4MultipleScattering</emphasis>)
    467       </para></listitem>
    468       <listitem><para>
    469         Specialised process for more fast simulation the multiple scattering
    470         of muons and hadrons (class name <emphasis>G4hMultipleScattering</emphasis>)
    471       </para></listitem>
    472       <listitem><para>
    473         Alternative process (beta-version) for the multiple scattering
    474         of muons (class name <emphasis>G4MuMultipleScattering</emphasis>)
    475482      </para></listitem>
    476483      <listitem><para>
     
    549556
    550557<para>
    551 An example of the registration of these processes in a physics list
    552 is given in <xref linkend="programlist_PhysProc_1" />,
    553 similar method is used in EM-builders of reference physics
    554 lists ($G4INSTALL/source/physics_lists/builders) and in
    555 EM examples ($G4INSTALL/examples/extended/electromagnetic).
    556 
    557 <example id="programlist_PhysProc_1">
    558 <title>
    559 <literal>Registration of standard electromagnetic processes</literal>
    560 </title>
    561 
    562 <programlisting>
    563 void PhysicsList::ConstructEM()
    564 
    565 {
    566 
    567   theParticleIterator-&gt;reset();
    568 
    569   while( (*theParticleIterator)() ){
    570 
    571     G4ParticleDefinition* particle = theParticleIterator-&gt;value();
    572     G4ProcessManager* pmanager = particle-&gt;GetProcessManager();
    573     G4String particleName = particle-&gt;GetParticleName();
    574 
    575     if (particleName == "gamma") {
    576 
    577       pmanager-&gt;AddDiscreteProcess(new G4PhotoElectricEffect);
    578       pmanager-&gt;AddDiscreteProcess(new G4ComptonScattering);
    579       pmanager-&gt;AddDiscreteProcess(new G4GammaConversion);
    580 
    581     } else if (particleName == "e-") {
    582 
    583       pmanager-&gt;AddProcess(new G4MultipleScattering, -1, 1, 1);
    584       pmanager-&gt;AddProcess(new G4eIonisation,        -1, 2, 2);
    585       pmanager-&gt;AddProcess(new G4eBremsstrahlung,    -1, 3, 3);
    586 
    587     } else if (particleName == "e+") {
    588 
    589       pmanager-&gt;AddProcess(new G4MultipleScattering, -1, 1, 1);
    590       pmanager-&gt;AddProcess(new G4eIonisation,        -1, 2, 2);
    591       pmanager-&gt;AddProcess(new G4eBremsstrahlung,    -1, 3, 3);
    592       pmanager-&gt;AddProcess(new G4eplusAnnihilation,   0,-1, 4);
    593      
    594     } else if( particleName == "mu+" ||
    595                particleName == "mu-"    ) {
    596 
    597       pmanager-&gt;AddProcess(new G4hMultipleScattering,-1, 1, 1);
    598       pmanager-&gt;AddProcess(new G4MuIonisation,       -1, 2, 2);
    599       pmanager-&gt;AddProcess(new G4MuBremsstrahlung,   -1, 3, 3);
    600                pmanager-&gt;AddProcess(new G4MuPairProduction,   -1, 4, 4);       
    601 
    602     } else if (particleName == "alpha" ||
    603                particleName == "He3" ||
    604                particleName == "GenericIon") {
    605       // ions with charge >= +2
    606       pmanager-&gt;AddProcess(new G4hMultipleScattering,-1, 1, 1);
    607       pmanager-&gt;AddProcess(new G4ionIonisation,      -1, 2, 2);
    608      
    609     } else if ((!particle-&gt;IsShortLived()) &amp;&amp;
    610                (particle-&gt;GetPDGCharge() != 0.0) &amp;&amp;
    611                (particle-&gt;GetParticleName() != "chargedgeantino")) {
    612       //all others charged particles except geantino and short-lived
    613       pmanager-&gt;AddProcess(new G4hMultipleScattering,-1, 1, 1);
    614       pmanager-&gt;AddProcess(new G4hIonisation,        -1, 2, 2);
    615            
    616     }
    617   }
    618 }
    619 </programlisting>
    620 </example>
    621 </para>
    622 
    623 <para>
     558It is recommended to use physics constructor classes provided
     559with rederence physics lists ($G4INSTALL/source/physics_lists/builders):
     560    <itemizedlist spacing="compact">
     561      <listitem><para>
     562        default EM physics (class name <emphasis>G4EmStandardPhysics</emphasis>)
     563      </para></listitem>
     564      <listitem><para>
     565        optional EM physics providing similar performance as g4 7.1p01
     566        (class name <emphasis>G4EmStandardPhysics_option1</emphasis>)
     567      </para></listitem>
     568      <listitem><para>
     569        Experimental EM physics with enabled "ApplyCuts" option
     570        (class name <emphasis>G4EmStandardPhysics_option2</emphasis>)
     571      </para></listitem>
     572      <listitem><para>
     573        EM physics for simulation with high accuracy
     574        (class name <emphasis>G4EmStandardPhysics_option3</emphasis>)
     575      </para></listitem>
     576    </itemizedlist>
     577Examples of the registration of these physics constructor and
     578construction of alternative combinations of options are shown
     579in novice and extended examples ($G4INSTALL/examples/extended/electromagnetic).
    624580Novice and extended electromagnetic examples illustrating the use
    625581of electromagnetic processes are available as part of the Geant4
     
    676632   <listitem><para>
    677633     SetApplyCuts(G4bool)
     634   </para></listitem>
     635   <listitem><para>
     636     SetSpline(G4bool)
    678637   </para></listitem>
    679638   <listitem><para>
     
    836795The following is a summary of the Low Energy Electromagnetic
    837796processes available in Geant4. Further information is available in
    838 the
    839 <ulink url="http://www.ge.infn.it/geant4/lowE/index.html">
    840 homepage
     797the web
     798<ulink url="http://geant4.web.cern.ch/geant4/collaboration/working_groups/LEelectromagnetic/index.shtml">pages
    841799</ulink>
    842800of the Geant4 Low Energy Electromagnetic Physics Working Group.
     
    845803Physics Reference Manual
    846804</ulink>
    847 and in other
    848 <ulink url="http://www.ge.infn.it/geant4/lowE/papers.html">
    849 papers</ulink>.
    850805</para>
    851806
     
    899854
    900855<para>
    901 An example of the registration of these processes in a physics list
    902 is given in <xref linkend="programlist_PhysProc_2" />.
    903 
    904 <example id="programlist_PhysProc_2">
    905 <title>
    906 Registration of electromagnetic low energy electron/photon processes.
    907 </title>
    908 
    909 <programlisting>
    910 void LowEnPhysicsList::ConstructEM()
    911 {
    912   theParticleIterator-&gt;reset();
    913 
    914   while( (*theParticleIterator)() ){
    915 
    916     G4ParticleDefinition* particle = theParticleIterator-&gt;value();
    917     G4ProcessManager* pmanager = particle-&gt;GetProcessManager();
    918     G4String particleName = particle-&gt;GetParticleName();
    919 
    920     if (particleName == "gamma") {
    921 
    922       theLEPhotoElectric   = new G4LowEnergyPhotoElectric();
    923       theLECompton         = new G4LowEnergyCompton();
    924       theLEGammaConversion = new G4LowEnergyGammaConversion();
    925       theLERayleigh        = new G4LowEnergyRayleigh();
    926 
    927       pmanager-&gt;AddDiscreteProcess(theLEPhotoElectric);
    928       pmanager-&gt;AddDiscreteProcess(theLECompton);
    929       pmanager-&gt;AddDiscreteProcess(theLERayleigh);
    930       pmanager-&gt;AddDiscreteProcess(theLEGammaConversion);
    931 
    932     }
    933     else if (particleName == "e-") {
    934 
    935       theLEIonisation = new G4LowEnergyIonisation();
    936       theLEBremsstrahlung = new G4LowEnergyBremsstrahlung();
    937       theeminusMultipleScattering = new G4MultipleScattering();
    938 
    939       pmanager-&gt;AddProcess(theeminusMultipleScattering,-1,1,1);
    940       pmanager-&gt;AddProcess(theLEIonisation,-1,2,2);
    941       pmanager-&gt;AddProcess(theLEBremsstrahlung,-1,-1,3);
    942 
    943     }
    944     else if (particleName == "e+") {
    945 
    946       theeplusMultipleScattering = new G4MultipleScattering();
    947       theeplusIonisation = new G4eIonisation();
    948       theeplusBremsstrahlung = new G4eBremsstrahlung();
    949       theeplusAnnihilation = new G4eplusAnnihilation();
    950 
    951       pmanager-&gt;AddProcess(theeplusMultipleScattering,-1,1,1);
    952       pmanager-&gt;AddProcess(theeplusIonisation,-1,2,2);
    953       pmanager-&gt;AddProcess(theeplusBremsstrahlung,-1,-1,3);
    954       pmanager-&gt;AddProcess(theeplusAnnihilation,0,-1,4);
    955     }
    956   }
    957 }
    958 </programlisting>
    959 </example>
    960 </para>
    961 
    962 <para>
    963 Advanced <emphasis role="bold">examples</emphasis> illustrating the use of Low Energy
    964 Electromagnetic processes are available as part of the Geant4
     856Examples of the registration of physics constructor with low-energy
     857electromagnetic processes are shown
     858in Geant4 extended examples ($G4INSTALL/examples/extended/electromagnetic).
     859<emphasis role="bold">Advanced examples</emphasis> illustrating alternative instantiation
     860of these processes. Both are available as part of the Geant4
    965861<ulink url="http://geant4.web.cern.ch/geant4/support/download.shtml">
    966 release
    967 </ulink>
    968 and are further documented
    969 <ulink url="http://www.ge.infn.it/geant4/lowE/examples/index.html">
    970 here</ulink>.
     862release</ulink>.
    971863</para>
    972864
     
    979871</emphasis>
    980872need to be copied by the user to his/her code
    981 repository. These files are distributed together with Geant4
    982 <ulink url="http://geant4.web.cern.ch/geant4/support/download.shtml">
    983 release</ulink>.
    984 </para>
    985 
    986 <para>
     873repository. These files are distributed together with Geant4.
    987874The user should set the environment variable
    988875<emphasis role="bold">G4LEDATA</emphasis> to the
     
    1039926   </para></listitem>
    1040927</itemizedlist>
    1041 </para>
    1042 
    1043 <para>
    1044 The available models for ElectronicStoppingPower and
    1045 NuclearStoppingPower are documented in the
    1046 <ulink url="http://www.ge.infn.it/geant4/lowE/swprocess/design/">
    1047 class diagrams</ulink>.
    1048928</para>
    1049929
     
    1090970<ulink url="http://geant4.web.cern.ch/geant4/UserDocumentation/UsersGuides/PhysicsReferenceManual/html/PhysicsReferenceManual.html">
    1091971Physics Reference Manual
    1092 </ulink>
    1093 and in the Geant4 Low Energy Electromagnetic Physics Working Group
    1094 <ulink url="http://www.ge.infn.it/geant4/lowE/index.html">
    1095 homepage</ulink>.
     972</ulink>.
    1096973</para>
    1097974
     
    11391016G4PhotoElectricAngularGeneratorSauterGavrilla and
    11401017G4PhotoElectricAngularGeneratorPolarized can be set using the
    1141 strings "standard" and "polarized". Information regarding
    1142 conditions of use, performance and energy limits of different
    1143 models are available in the
    1144 <ulink url="http://geant4.web.cern.ch/geant4/UserDocumentation/UsersGuides/PhysicsReferenceManual/html/PhysicsReferenceManual.html">
    1145 Physics Reference Manual
    1146 </ulink>
    1147 and in the Geant4 Low Energy Electromagnetic Physics Working Group
    1148 <ulink url="http://www.ge.infn.it/geant4/lowE/index.html">
    1149 homepage</ulink>.
     1018strings "standard" and "polarized".
    11501019</para>
    11511020
     
    11551024<sect3 id="sect.PhysProc.EleMag.VeryLowE">
    11561025<title>
    1157 Very Low energy Electromagnetic Processes (Geant4 DNA extension)
     1026Very Low energy Electromagnetic Processes (Geant4-DNA extension)
    11581027</title>
    11591028
     
    11621031to energies of a few electronVolts suitable for the simulation of radiation
    11631032effects in liquid water for applications at the cellular and sub-cellular
    1164 level. These developments take place in the framework of the Geant4 DNA
    1165 project
    1166 [
    1167 <ulink url="http://www.ge.infn.it/geant4/dna">
    1168 http://www.ge.infn.it/geant4/dna
    1169 </ulink>
    1170 ] and are fully described in the paper
     1033level. These developments take place in the framework of the Geant4-DNA
     1034project and are described in the paper
    11711035<citation>
    11721036<xref linkend="biblio.chauvie2007" endterm="biblio.chauvie2007.abbrev" />
     
    11961060<itemizedlist spacing="compact">
    11971061  <listitem><para>
    1198     Elastic scattering (two complementary models available depending on energy range)
     1062    Elastic scattering (two complementary models available depending on energy range, and one alternative model)
    11991063    <itemizedlist spacing="compact">
    12001064      <listitem><para>
    1201         Cross section policy class name, common to both models :
    1202         G4CrossSectionElasticScreenedRutherford       
    1203       </para></listitem>
    1204       <listitem><para>
    1205         Final state policy class names : G4FinalStateElasticScreenedRutherford
    1206         or  G4FinalStateElasticBrennerZaider     
     1065        - 1) either : cross section policy class names : G4CrossSectionElasticScreenedRutherfordLE (below 200 eV)
     1066        and G4CrossSectionElasticScreenedRutherfordHE (above 200 eV). Both should be used together.
     1067        - 2) or : cross section policy class name : G4CrossSectionElasticChampion.       
     1068      </para></listitem>
     1069      <listitem><para>
     1070        - 1) either : final state policy class names : G4FinalStateElasticBrennerZaider (corresponding to G4CrossSectionElasticScreenedRutherfordLE)
     1071        and G4CrossSectionElasticScreenedRutherfordLE (corresponding to G4CrossSectionElasticScreenedRutherfordHE).
     1072        - 2) or final state policy class name : G4FinalStateElasticChampion (corresponding to G4CrossSectionElasticChampion).       
    12071073      </para></listitem>
    12081074    </itemizedlist>
     
    14711337#include "G4FinalStateExcitationEmfietzoglou.hh"
    14721338
    1473 #include "G4CrossSectionElasticScreenedRutherford.hh"
     1339#include "G4CrossSectionElasticScreenedRutherfordLE.hh"
     1340#include "G4FinalStateElasticBrennerZaider.hh"
     1341
     1342#include "G4CrossSectionElasticScreenedRutherfordHE.hh"
    14741343#include "G4FinalStateElasticScreenedRutherford.hh"
    1475 #include "G4FinalStateElasticBrennerZaider.hh"
     1344
     1345#include "G4CrossSectionElasticChampion.hh"
     1346#include "G4FinalStateElasticChampion.hh"
    14761347
    14771348#include "G4CrossSectionExcitationBorn.hh"
     
    14951366// Processes definition
    14961367
    1497 typedef G4DNAProcess&lt;G4CrossSectionElasticScreenedRutherford,G4FinalStateElasticScreenedRutherford&gt;
    1498   ElasticScreenedRutherford;
    1499 typedef G4DNAProcess&lt;G4CrossSectionElasticScreenedRutherford,G4FinalStateElasticBrennerZaider&gt;
    1500   ElasticBrennerZaider;
     1368typedef G4DNAProcess&lt;G4CrossSectionElasticScreenedRutherfordLE,G4FinalStateElasticBrennerZaider&gt;
     1369  ElasticScreenedRutherfordLE;
     1370typedef G4DNAProcess&lt;G4CrossSectionElasticScreenedRutherfordHE,G4FinalStateElasticScreenedRutherford&gt;
     1371  ElasticScreenedRutherfordHE;
     1372typedef G4DNAProcess&lt;G4CrossSectionElasticChampion,G4FinalStateElasticChampion&gt;
     1373  ElasticChampion;
    15011374typedef G4DNAProcess&lt;G4CrossSectionExcitationEmfietzoglou,G4FinalStateExcitationEmfietzoglou&gt;
    15021375  ExcitationEmfietzoglou;
     
    15271400
    15281401    if (particleName == "e-") {
    1529        processManager-&gt;AddDiscreteProcess(new ExcitationEmfietzoglou);
    1530        processManager-&gt;AddDiscreteProcess(new ElasticScreenedRutherford);
    1531        processManager-&gt;AddDiscreteProcess(new ElasticBrennerZaider);
    1532        processManager-&gt;AddDiscreteProcess(new IonisationBorn);
     1402       processManager-&gt;AddDiscreteProcess(new ExcitationEmfietzoglou("ExcitationEmfietzoglou"));
     1403       
     1404       // The two following elastic scattering models should be registered together
     1405       processManager-&gt;AddDiscreteProcess(new ElasticScreenedRutherfordLE("ElasticScreenedRutherfordLE"));
     1406       processManager-&gt;AddDiscreteProcess(new ElasticScreenedRutherfordHE("ElasticScreenedRutherfordHE"));
     1407       
     1408       // The following process is commented here because it is ALTERNATIVE to ElasticScreenedRutherfordLE and ElasticScreenedRutherfordHE
     1409       // It should NOT be registered simultaneously with ElasticScreenedRutherfordLE and ElasticScreenedRutherfordHE
     1410       // processManager-&gt;AddDiscreteProcess(new ElasticChampion("ElasticChampion"));
     1411       
     1412       processManager-&gt;AddDiscreteProcess(new IonisationBorn("IonisationBorn"));
    15331413
    15341414    } else if ( particleName == "proton" ) {
    1535        processManager-&gt;AddDiscreteProcess(new ExcitationMillerGreen);
    1536        processManager-&gt;AddDiscreteProcess(new ExcitationBorn);
    1537        processManager-&gt;AddDiscreteProcess(new IonisationRudd);
    1538        processManager-&gt;AddDiscreteProcess(new IonisationBorn);
    1539        processManager-&gt;AddDiscreteProcess(new ChargeDecrease);
     1415       processManager-&gt;AddDiscreteProcess(new ExcitationMillerGreen("ExcitationMillerGreen"));
     1416       processManager-&gt;AddDiscreteProcess(new ExcitationBorn("ExcitationBorn"));
     1417       processManager-&gt;AddDiscreteProcess(new IonisationRudd("IonisationRudd"));
     1418       processManager-&gt;AddDiscreteProcess(new IonisationBorn("IonisationBorn"));
     1419       processManager-&gt;AddDiscreteProcess(new ChargeDecrease("ChargeDecrease"));
    15401420
    15411421    } else if ( particleName == "hydrogen" ) {
    1542        processManager-&gt;AddDiscreteProcess(new IonisationRudd);
    1543        processManager-&gt;AddDiscreteProcess(new ChargeIncrease);
     1422       processManager-&gt;AddDiscreteProcess(new IonisationRudd("IonisationRudd"));
     1423       processManager-&gt;AddDiscreteProcess(new ChargeIncrease("ChargeIncrease"));
    15441424
    15451425    } else if ( particleName == "alpha" ) {
    1546        processManager-&gt;AddDiscreteProcess(new ExcitationMillerGreen);
    1547        processManager-&gt;AddDiscreteProcess(new IonisationRudd);
    1548        processManager-&gt;AddDiscreteProcess(new ChargeDecrease);
     1426       processManager-&gt;AddDiscreteProcess(new ExcitationMillerGreen("ExcitationMillerGreen"));
     1427       processManager-&gt;AddDiscreteProcess(new IonisationRudd("IonisationRudd"));
     1428       processManager-&gt;AddDiscreteProcess(new ChargeDecrease("ChargeDecrease"));
    15491429   
    15501430    } else if ( particleName == "alpha+" ) {
    1551        processManager-&gt;AddDiscreteProcess(new ExcitationMillerGreen);
    1552        processManager-&gt;AddDiscreteProcess(new IonisationRudd);
    1553        processManager-&gt;AddDiscreteProcess(new ChargeDecrease);
    1554        processManager-&gt;AddDiscreteProcess(new ChargeIncrease);
     1431       processManager-&gt;AddDiscreteProcess(new ExcitationMillerGreen("ExcitationMillerGreen"));
     1432       processManager-&gt;AddDiscreteProcess(new IonisationRudd("IonisationRudd"));
     1433       processManager-&gt;AddDiscreteProcess(new ChargeDecrease("ChargeDecrease"));
     1434       processManager-&gt;AddDiscreteProcess(new ChargeIncrease("ChargeIncrease"));
    15551435   
    15561436    } else if ( particleName == "helium" ) {
    1557        processManager-&gt;AddDiscreteProcess(new ExcitationMillerGreen);
    1558        processManager-&gt;AddDiscreteProcess(new IonisationRudd);
    1559        processManager-&gt;AddDiscreteProcess(new ChargeIncrease);
     1437       processManager-&gt;AddDiscreteProcess(new ExcitationMillerGreen("ExcitationMillerGreen"));
     1438       processManager-&gt;AddDiscreteProcess(new IonisationRudd("IonisationRudd"));
     1439       processManager-&gt;AddDiscreteProcess(new ChargeIncrease("ChargeIncrease"));
    15601440    }
    15611441
     
    34673347      <mediaobject>
    34683348        <imageobject role="fo">
    3469           <imagedata fileref="./AllResources/TrackingAndPhysics/physicsProcessPARAM.src/ComponentsWithRegion.gif"
     3349          <imagedata fileref="./AllResources/TrackingAndPhysics/physicsProcessPARAM.src/ComponentsWithRegion.jpg"
    34703350                     format="JPG" contentwidth="7.0cm" align="center" />
    34713351        </imageobject>
    34723352        <imageobject role="html">
    3473           <imagedata fileref="./AllResources/TrackingAndPhysics/physicsProcessPARAM.src/ComponentsWithRegion.gif"
     3353          <imagedata fileref="./AllResources/TrackingAndPhysics/physicsProcessPARAM.src/ComponentsWithRegion.jpg"
    34743354                     format="JPG" align="center" />
    34753355        </imageobject>
Note: See TracChangeset for help on using the changeset viewer.