Ignore:
Timestamp:
Sep 30, 2010, 2:47:17 PM (14 years ago)
Author:
garnier
Message:

tag geant4.9.4 beta 1 + modifs locales

Location:
trunk/source/processes/hadronic/models/cascade
Files:
108 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/hadronic/models/cascade/History

    r1315 r1337  
    1 $Id: History,v 1.90 2010/06/08 06:34:43 stesting Exp $
     1$Id: History,v 1.91 2010/06/11 17:07:23 mkelsey Exp $
    22-------------------------------------------------------------------
    33
     
    1616     ---------------------------------------------------------------
    1717
    18 08 June 2010 Gunter Folger  (hadr-casc-V09-03-42)
     1811 June 2010 Michael Keley (hadr-casc-V09-03-43)
     19------------------------------------------------
     20- G4CascadeData.hh:  Equally trivial fix for compiler warking on Intel ICC
     21  for index[] array bounds in ::initialize().  Dimension array as [9], and
     22  set all values.
     23
     2408 June 2010 Gunter Folger (hadr-casc-V09-03-42)
     25------------------------------------------------
    1926-  trivial fix for compiler warning on gcc43 on empty body in for(...) in 
    2027    cascade/include/G4CascadeInterpolator.icc:67
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4BigBanger.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4BigBanger.hh,v 1.13 2010/05/21 17:56:34 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4BigBanger.hh,v 1.14 2010/06/25 09:41:48 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100315  M. Kelsey -- Remove "using" directive and unnecessary #includes.
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadParticle.hh

    r1315 r1337  
    1 #ifndef G4CASCAD_PARTICLE_HH
    2 #define G4CASCAD_PARTICLE_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadParticle.hh,v 1.14 2010/03/16 22:10:26 mkelsey Exp $
    28 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadParticle.hh,v 1.15 2010/06/25 09:41:50 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100112  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
    3130// 20100126  M. Kelsey -- Replace vector<G4Double> position with G4ThreeVector,
    3231//              move ::print() to .cc file, fix uninitialized data members
     32
     33#ifndef G4CASCAD_PARTICLE_HH
     34#define G4CASCAD_PARTICLE_HH
    3335
    3436#include "G4InuclElementaryParticle.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeChannel.hh,v 1.6 2010/05/15 04:25:17 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeChannel.hh,v 1.7 2010/06/25 09:41:52 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100514  M. Kelsey -- All functionality removed except quantum-number
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeData.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeData.hh,v 1.5 2010/05/16 05:18:36 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeData.hh,v 1.7 2010/06/25 09:41:54 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Use template arguments to dimension const-refs
     
    3233//              from measured inclusive (tot) cross-sections.  Add two
    3334//              ctors to pass inclusive xsec array as input (for piN/NN).
     35// 20100611  M. Kelsey -- Work around Intel ICC compiler warning about
     36//              index[] subscripts out of range.  Dimension to full [9].
    3437
    3538#ifndef G4_CASCADE_DATA_HH
     
    5053  enum { NM=N9?8:N8?7:6, NXS=N29 };     // Multiplicity and cross-section bins
    5154
    52   G4int index[NM+1];                    // Start and stop indices to xsec's
     55  G4int index[9];                       // Start and stop indices to xsec's
    5356  G4double multiplicities[NM][NE];      // Multiplicity distributions
    5457
     
    115118  // Initialize index offsets for cross-section array (can't do globally)
    116119  index[0] = 0;   index[1] = N02; index[2] = N23; index[3] = N24;
    117   index[4] = N25; index[5] = N26; index[6] = N27;
    118   if (NM>6) index[7]=N28;
    119   if (NM>7) index[8]=N29;
     120  index[4] = N25; index[5] = N26; index[6] = N27; index[7] = N28;
     121  index[8] = N29;
    120122
    121123  // Initialize multiplicity array
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeFunctions.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeFunctions.hh,v 1.5 2010/05/14 21:05:03 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeFunctions.hh,v 1.6 2010/06/25 09:41:56 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100407  M. Kelsey -- Return particle types std::vector<> by const ref,
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeFunctions.icc

    r1316 r1337  
    1 #ifndef G4_CASCADE_FUNCTIONS_ICC
    2 #define G4_CASCADE_FUNCTIONS_ICC
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadeFunctions.icc,v 1.2 2010/05/14 21:05:03 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeFunctions.icc,v 1.3 2010/06/25 09:41:58 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100512  M. Kelsey -- Pass std::vector<> buffer as argument to
    3130//              getOutgoingPartTypes().
     31
     32#ifndef G4_CASCADE_FUNCTIONS_ICC
     33#define G4_CASCADE_FUNCTIONS_ICC
    3234
    3335
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeInterpolator.hh

    r1316 r1337  
    1 #ifndef G4CASCADE_INTERPOLATOR_HH
    2 #define G4CASCADE_INTERPOLATOR_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadeInterpolator.hh,v 1.1 2010/05/14 18:01:28 mkelsey Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeInterpolator.hh,v 1.2 2010/06/25 09:42:00 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2928//
    3029// Author:  Michael Kelsey <kelsey@slac.stanford.edu>
     
    3938// is the bin index, and the fractional part is, obviously, the
    4039// fractional part.
     40
     41#ifndef G4CASCADE_INTERPOLATOR_HH
     42#define G4CASCADE_INTERPOLATOR_HH
    4143
    4244#include "globals.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeInterpolator.icc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeInterpolator.icc,v 1.5 2010/06/08 06:29:34 stesting Exp $
    26 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeInterpolator.icc,v 1.6 2010/06/25 09:42:02 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2728//
    2829// Author:  Michael Kelsey <kelsey@slac.stanford.edu>
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeKminusNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeKminusNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeKminusNChannel.hh,v 1.7 2010/06/25 09:42:04 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeKminusPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeKminusPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeKminusPChannel.hh,v 1.7 2010/06/25 09:42:06 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeKplusNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeKplusNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeKplusNChannel.hh,v 1.7 2010/06/25 09:42:08 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeKplusPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeKplusPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeKplusPChannel.hh,v 1.7 2010/06/25 09:42:10 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeKzeroBarNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeKzeroBarNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeKzeroBarNChannel.hh,v 1.7 2010/06/25 09:42:12 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeKzeroBarPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeKzeroBarPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeKzeroBarPChannel.hh,v 1.7 2010/06/25 09:42:14 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeKzeroNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeKzeroNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeKzeroNChannel.hh,v 1.7 2010/06/25 09:42:16 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeKzeroPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeKzeroPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeKzeroPChannel.hh,v 1.7 2010/06/25 09:42:18 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeLambdaNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeLambdaNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeLambdaNChannel.hh,v 1.7 2010/06/25 09:42:20 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeLambdaPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeLambdaPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeLambdaPChannel.hh,v 1.7 2010/06/25 09:42:22 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeMomentum.hh

    r1315 r1337  
    2525//
    2626// $Id: G4CascadeMomentum.hh,v 1.5 2010/03/16 22:10:26 mkelsey Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2828//
    2929// Class G4CascadeMomentum
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeNNChannel.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_NN_CHANNEL_HH
    2 #define G4_CASCADE_NN_CHANNEL_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadeNNChannel.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeNNChannel.hh,v 1.3 2010/06/25 09:42:24 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4_CASCADE_NN_CHANNEL_HH
     30#define G4_CASCADE_NN_CHANNEL_HH
    2931
    3032#include "G4CascadeData.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeNPChannel.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_NP_CHANNEL_HH
    2 #define G4_CASCADE_NP_CHANNEL_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadeNPChannel.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeNPChannel.hh,v 1.3 2010/06/25 09:42:26 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4_CASCADE_NP_CHANNEL_HH
     30#define G4_CASCADE_NP_CHANNEL_HH
    2931
    3032#include "G4CascadeData.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadePPChannel.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_PP_CHANNEL_HH
    2 #define G4_CASCADE_PP_CHANNEL_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadePPChannel.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadePPChannel.hh,v 1.3 2010/06/25 09:42:28 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4_CASCADE_PP_CHANNEL_HH
     30#define G4_CASCADE_PP_CHANNEL_HH
    2931
    3032#include "G4CascadeData.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadePiMinusNChannel.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_PIMINUSN_CHANNEL_HH
    2 #define G4_CASCADE_PIMINUSN_CHANNEL_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadePiMinusNChannel.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadePiMinusNChannel.hh,v 1.3 2010/06/25 09:42:30 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4_CASCADE_PIMINUSN_CHANNEL_HH
     30#define G4_CASCADE_PIMINUSN_CHANNEL_HH
    2931
    3032#include "G4CascadeData.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadePiMinusPChannel.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_PIMINUSP_CHANNEL_HH
    2 #define G4_CASCADE_PIMINUSP_CHANNEL_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadePiMinusPChannel.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadePiMinusPChannel.hh,v 1.3 2010/06/25 09:42:32 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4_CASCADE_PIMINUSP_CHANNEL_HH
     30#define G4_CASCADE_PIMINUSP_CHANNEL_HH
    2931
    3032#include "G4CascadeData.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadePiPlusNChannel.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_PIPLUSN_CHANNEL_HH
    2 #define G4_CASCADE_PIPLUSN_CHANNEL_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadePiPlusNChannel.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadePiPlusNChannel.hh,v 1.3 2010/06/25 09:42:34 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4_CASCADE_PIPLUSN_CHANNEL_HH
     30#define G4_CASCADE_PIPLUSN_CHANNEL_HH
    2931
    3032#include "G4CascadeData.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadePiPlusPChannel.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_PIPLUSP_CHANNEL_HH
    2 #define G4_CASCADE_PIPLUSP_CHANNEL_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadePiPlusPChannel.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadePiPlusPChannel.hh,v 1.3 2010/06/25 09:42:36 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4_CASCADE_PIPLUSP_CHANNEL_HH
     30#define G4_CASCADE_PIPLUSP_CHANNEL_HH
    2931
    3032#include "G4CascadeData.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadePiZeroNChannel.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_PIZERON_CHANNEL_HH
    2 #define G4_CASCADE_PIZERON_CHANNEL_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadePiZeroNChannel.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadePiZeroNChannel.hh,v 1.3 2010/06/25 09:42:38 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4_CASCADE_PIZERON_CHANNEL_HH
     30#define G4_CASCADE_PIZERON_CHANNEL_HH
    2931
    3032#include "G4CascadeData.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadePiZeroPChannel.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_PIZEROP_CHANNEL_HH
    2 #define G4_CASCADE_PIZEROP_CHANNEL_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadePiZeroPChannel.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadePiZeroPChannel.hh,v 1.3 2010/06/25 09:42:40 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4_CASCADE_PIZEROP_CHANNEL_HH
     30#define G4_CASCADE_PIZEROP_CHANNEL_HH
    2931
    3032#include "G4CascadeData.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeSampler.hh

    r1316 r1337  
    1 #ifndef G4_CASCADE_SAMPLER_HH
    2 #define G4_CASCADE_SAMPLER_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4CascadeSampler.hh,v 1.2 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeSampler.hh,v 1.3 2010/06/25 09:42:42 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100506  M. Kelsey -- Move functionality of G4CascadeChannel here,
     
    3231// 20100512  M. Kelsey -- Make this templated on energy and multiplicity
    3332//              binning, as base to new sampler.
     33
     34#ifndef G4_CASCADE_SAMPLER_HH
     35#define G4_CASCADE_SAMPLER_HH
    3436
    3537#include <vector>
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeSampler.icc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeSampler.icc,v 1.2 2010/05/21 18:26:16 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeSampler.icc,v 1.3 2010/06/25 09:42:44 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100506 M. Kelsey -- Move functionity of G4CascadeChannel here,
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeSigmaMinusNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeSigmaMinusNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeSigmaMinusNChannel.hh,v 1.7 2010/06/25 09:42:46 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeSigmaMinusPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeSigmaMinusPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeSigmaMinusPChannel.hh,v 1.7 2010/06/25 09:42:48 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeSigmaPlusNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeSigmaPlusNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeSigmaPlusNChannel.hh,v 1.7 2010/06/25 09:42:50 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeSigmaPlusPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeSigmaPlusPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeSigmaPlusPChannel.hh,v 1.7 2010/06/25 09:42:52 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeSigmaZeroNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeSigmaZeroNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeSigmaZeroNChannel.hh,v 1.7 2010/06/25 09:42:54 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeSigmaZeroPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeSigmaZeroPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeSigmaZeroPChannel.hh,v 1.7 2010/06/25 09:42:56 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeXiMinusNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeXiMinusNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeXiMinusNChannel.hh,v 1.7 2010/06/25 09:42:58 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeXiMinusPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeXiMinusPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeXiMinusPChannel.hh,v 1.7 2010/06/25 09:43:00 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeXiZeroNChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeXiZeroNChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeXiZeroNChannel.hh,v 1.7 2010/06/25 09:43:02 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeXiZeroPChannel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeXiZeroPChannel.hh,v 1.6 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeXiZeroPChannel.hh,v 1.7 2010/06/25 09:43:04 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100507  M. Kelsey -- Remove redundant total-bins template argument
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CollisionOutput.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CollisionOutput.hh,v 1.20 2010/05/21 18:07:30 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CollisionOutput.hh,v 1.20.2.1 2010/06/25 09:43:06 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4Dineutron.hh

    r1316 r1337  
    1 #ifndef G4DINEUTRON_HH
    2 #define G4DINEUTRON_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4Dineutron.hh,v 1.3 2010/04/13 05:30:10 mkelsey Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4Dineutron.hh,v 1.4 2010/06/25 09:43:08 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2928//
    3029// ------------------------------------------------------------
     
    3635//      13 Apr 2010:  Per Kurashige, inherit from G4VShortLivedParticle.
    3736// ----------------------------------------------------------------
     37
     38#ifndef G4DINEUTRON_HH
     39#define G4DINEUTRON_HH
    3840
    3941#include "G4VShortLivedParticle.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4Diproton.hh

    r1316 r1337  
    1 #ifndef G4DIPROTON_HH
    2 #define G4DIPROTON_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4Diproton.hh,v 1.3 2010/04/13 05:30:10 mkelsey Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4Diproton.hh,v 1.4 2010/06/25 09:43:10 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2928//
    3029// ------------------------------------------------------------
     
    3635//      13 Apr 2010:  Per Kurashige, inherit from G4VShortLivedParticle.
    3736// ----------------------------------------------------------------
     37
     38#ifndef G4DIPROTON_HH
     39#define G4DIPROTON_HH
    3840
    3941#include "G4VShortLivedParticle.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4ElementaryParticleCollider.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4ElementaryParticleCollider.hh,v 1.31 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4ElementaryParticleCollider.hh,v 1.32 2010/06/25 09:43:12 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4EquilibriumEvaporator.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4EquilibriumEvaporator.hh,v 1.11 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4EquilibriumEvaporator.hh,v 1.11.2.1 2010/06/25 09:43:14 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100413  M. Kelsey -- Pass G4CollisionOutput by ref to ::collide()
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4EvaporationInuclCollider.hh

    r1315 r1337  
    2525//
    2626// $Id: G4EvaporationInuclCollider.hh,v 1.5 2010/05/21 17:56:34 mkelsey Exp $
    27 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2828//
    2929// 20100315  M. Kelsey -- Remove "using" directive and unnecessary #includes.
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4Fissioner.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4Fissioner.hh,v 1.12 2010/05/21 17:56:34 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4Fissioner.hh,v 1.13 2010/06/25 09:43:16 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100315  M. Kelsey -- Remove "using" directive and unnecessary #includes.
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4InteractionCase.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InteractionCase.hh,v 1.11 2010/05/21 17:56:34 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InteractionCase.hh,v 1.12 2010/06/25 09:43:18 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100518  M. Kelsey -- Why use std::pair<> at all?  Never exported; just
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4IntraNucleiCascader.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4IntraNucleiCascader.hh,v 1.10 2010/05/21 17:56:34 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4IntraNucleiCascader.hh,v 1.10.2.1 2010/06/25 09:43:20 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100315  M. Kelsey -- Remove "using" directory and unnecessary #includes.
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4InuclCollider.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InuclCollider.hh,v 1.13 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclCollider.hh,v 1.13.2.1 2010/06/25 09:43:22 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100413  M. Kelsey -- Pass G4CollisionOutput by ref to ::collide()
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4InuclElementaryParticle.hh

    r1315 r1337  
    1 #ifndef G4INUCL_ELEMENTARY_PARTICLE_HH
    2 #define G4INUCL_ELEMENTARY_PARTICLE_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4InuclElementaryParticle.hh,v 1.22 2010/04/29 19:39:55 mkelsey Exp $
    28 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclElementaryParticle.hh,v 1.23 2010/06/25 09:43:24 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
    3130// 20100409  M. Kelsey -- Drop unused string argument from ctors.
    3231// 20100429  M. Kelsey -- Change "photon()" to "isPhoton()", use enum names
     32
     33#ifndef G4INUCL_ELEMENTARY_PARTICLE_HH
     34#define G4INUCL_ELEMENTARY_PARTICLE_HH
    3335
    3436#include "G4InuclParticle.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4InuclNuclei.hh

    r1315 r1337  
    1 #ifndef G4INUCL_NUCLEI_HH
    2 #define G4INUCL_NUCLEI_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4InuclNuclei.hh,v 1.16 2010/04/09 19:33:11 mkelsey Exp $
    28 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclNuclei.hh,v 1.17 2010/06/25 09:43:26 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100112  Michael Kelsey -- Replace G4CascadeMomentum with G4LorentzVector
     
    3332// 20100319  M. Kelsey -- Remove "using" directory and unnecessary #includes.
    3433// 20100409  M. Kelsey -- Drop unused string argument from ctors.
     34
     35#ifndef G4INUCL_NUCLEI_HH
     36#define G4INUCL_NUCLEI_HH
    3537
    3638#include "G4InuclParticle.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4InuclParticle.hh

    r1315 r1337  
    1 #ifndef G4INUCL_PARTICLE_HH
    2 #define G4INUCL_PARTICLE_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4InuclParticle.hh,v 1.19 2010/05/21 18:07:30 mkelsey Exp $
    28 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclParticle.hh,v 1.20 2010/06/25 09:43:28 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100112  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
    3130// 20100409  M. Kelsey -- Drop unused string argument from ctors.
    3231// 20100519  M. Kelsey -- Add public access to G4DynamicParticle content
     32
     33#ifndef G4INUCL_PARTICLE_HH
     34#define G4INUCL_PARTICLE_HH
    3335
    3436#include "G4DynamicParticle.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4InuclParticleNames.hh

    r1316 r1337  
    1 #ifndef G4INUCL_PARTICLE_NAMES_HH
    2 #define G4INUCL_PARTICLE_NAMES_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4InuclParticleNames.hh,v 1.2 2010/04/29 19:39:55 mkelsey Exp $
    28 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclParticleNames.hh,v 1.3 2010/06/25 09:43:30 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// Defines enums to map G4InuclElementaryParticle type codes to human
    3130// readable names.  Meant to replace similar local enums scattered through
    3231// the code.
     32
     33#ifndef G4INUCL_PARTICLE_NAMES_HH
     34#define G4INUCL_PARTICLE_NAMES_HH
    3335
    3436namespace G4InuclParticleNames {
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4InuclSpecialFunctions.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InuclSpecialFunctions.hh,v 1.16 2010/04/13 05:30:10 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclSpecialFunctions.hh,v 1.17 2010/06/25 09:43:32 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4KaonHypSampler.hh

    r1316 r1337  
    1 #ifndef G4_KAON_HYP_SAMPLER_HH
    2 #define G4_KAON_HYP_SAMPLER_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4KaonHypSampler.hh,v 1.1 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4KaonHypSampler.hh,v 1.2 2010/06/25 09:43:34 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100512  M. Kelsey -- Replaces (old, untemplated) G4CascadeSampler
     30
     31#ifndef G4_KAON_HYP_SAMPLER_HH
     32#define G4_KAON_HYP_SAMPLER_HH
    3133
    3234
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4LorentzConvertor.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4LorentzConvertor.hh,v 1.15 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4LorentzConvertor.hh,v 1.15.2.1 2010/06/25 09:43:36 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100108  Michael Kelsey -- Use G4LorentzVector internally
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4NonEquilibriumEvaporator.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4NonEquilibriumEvaporator.hh,v 1.10 2010/05/21 17:56:34 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4NonEquilibriumEvaporator.hh,v 1.11 2010/06/25 09:43:38 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100315  M. Kelsey -- Remove "using" directive and unnecessary #includes.
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4NuclWatcher.hh

    r1315 r1337  
    1 #ifndef G4NUCL_WATCHER_HH
    2 #define G4NUCL_WATCHER_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4NuclWatcher.hh,v 1.13 2010/04/07 18:23:15 mkelsey Exp $
    28 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4NuclWatcher.hh,v 1.14 2010/06/25 09:43:40 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100202  M. Kelsey -- Move most code into .cc file
    3130// 20100405  M. Kelsey -- Pass const-ref std::vector<>
     31
     32#ifndef G4NUCL_WATCHER_HH
     33#define G4NUCL_WATCHER_HH
    3234
    3335#include "G4Types.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4NucleiModel.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4NucleiModel.hh,v 1.25 2010/05/21 17:44:38 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4NucleiModel.hh,v 1.25.2.1 2010/06/25 09:43:42 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100319  M. Kelsey -- Remove "using" directory and unnecessary #includes,
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4ParticleLargerBeta.hh

    r1315 r1337  
    1 #ifndef G4ParticleLargerBeta_h
    2 #define G4ParticleLargerBeta_h
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4ParticleLargerBeta.hh,v 1.6 2010/05/15 04:25:17 mkelsey Exp $
    28 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4ParticleLargerBeta.hh,v 1.7 2010/06/25 09:43:44 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100112  M. Kelsey -- Add additional operator() which uses pointers,
    3130//              also fix bug which returns wrong result
     31
     32#ifndef G4ParticleLargerBeta_h
     33#define G4ParticleLargerBeta_h
    3234
    3335#include "G4InuclElementaryParticle.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4ParticleLargerEkin.hh

    r1315 r1337  
    1 #ifndef G4PARTICLE_LARGER_EKIN_HH
    2 #define G4PARTICLE_LARGER_EKIN_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4ParticleLargerEkin.hh,v 1.11 2010/05/15 04:25:17 mkelsey Exp $
    28 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4ParticleLargerEkin.hh,v 1.12 2010/06/25 09:43:46 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// Implements a *reverse* sorting: std::sort expects a less-than operator
     
    3231//
    3332// 20091125  M. Kelsey -- Add additional operator() which uses pointers
     33
     34#ifndef G4PARTICLE_LARGER_EKIN_HH
     35#define G4PARTICLE_LARGER_EKIN_HH
    3436
    3537#include "G4InuclElementaryParticle.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4PionNucSampler.hh

    r1316 r1337  
    1 #ifndef G4_PION_NUC_SAMPLER_HH
    2 #define G4_PION_NUC_SAMPLER_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4PionNucSampler.hh,v 1.1 2010/05/15 00:55:01 mkelsey Exp $
    28 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4PionNucSampler.hh,v 1.2 2010/06/25 09:43:48 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2928//
    3029// 20100512  M. Kelsey -- Replaces G4FinalStateSampler
     30
     31#ifndef G4_PION_NUC_SAMPLER_HH
     32#define G4_PION_NUC_SAMPLER_HH
    3133
    3234#include "G4CascadeSampler.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4PreCompoundInuclCollider.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4PreCompoundInuclCollider.hh,v 1.6 2010/05/21 17:56:34 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4PreCompoundInuclCollider.hh,v 1.7 2010/06/25 09:43:50 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100315  M. Kelsey -- Remove "using" directive and unneeded #includes.
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4UnboundPN.hh

    r1316 r1337  
    1 #ifndef G4UNBOUNDPN_HH
    2 #define G4UNBOUNDPN_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4UnboundPN.hh,v 1.3 2010/04/13 05:30:10 mkelsey Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4UnboundPN.hh,v 1.4 2010/06/25 09:43:52 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2928//
    3029// ------------------------------------------------------------
     
    3635//      13 Apr 2010:  Per Kurashige, inherit from G4VShortLivedParticle.
    3736// ----------------------------------------------------------------
     37
     38#ifndef G4UNBOUNDPN_HH
     39#define G4UNBOUNDPN_HH
    3840
    3941#include "G4VShortLivedParticle.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4VCascadeCollider.hh

    r1316 r1337  
    1 #ifndef G4V_CASCADE_COLLIDER_HH
    2 #define G4V_CASCADE_COLLIDER_HH
    31//
    42// ********************************************************************
     
    2523// * acceptance of all terms of the Geant4 Software license.          *
    2624// ********************************************************************
    27 // $Id: G4VCascadeCollider.hh,v 1.1 2010/05/21 17:56:34 mkelsey Exp $
    28 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4VCascadeCollider.hh,v 1.1.2.1 2010/06/25 09:43:54 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
     28
     29#ifndef G4V_CASCADE_COLLIDER_HH
     30#define G4V_CASCADE_COLLIDER_HH
    2931
    3032#include "globals.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4WatcherGun.hh

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4WatcherGun.hh,v 1.9 2010/04/08 15:48:00 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4WatcherGun.hh,v 1.10 2010/06/25 09:43:56 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100407  M. Kelsey -- Return const-ref to avoid copy overhead.
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4BigBanger.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4BigBanger.cc,v 1.29 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4BigBanger.cc,v 1.30 2010/06/25 09:43:58 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CascadParticle.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadParticle.cc,v 1.14 2010/03/16 22:10:26 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadParticle.cc,v 1.15 2010/06/25 09:44:00 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100112  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CascadeChannel.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeChannel.cc,v 1.7 2010/05/15 04:25:17 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeChannel.cc,v 1.8 2010/06/25 09:44:02 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100514  M. Kelsey -- All functionality removed except quantum-number
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CascadeInterface.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeInterface.cc,v 1.77 2010/05/21 18:07:30 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeInterface.cc,v 1.77.2.1 2010/06/25 09:44:04 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CascadeKzeroBarNChannel.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeKzeroBarNChannel.cc,v 1.5 2010/05/16 05:18:36 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeKzeroBarNChannel.cc,v 1.6 2010/06/25 09:44:06 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728
    2829#include "G4CascadeKzeroBarNChannel.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CascadeT0npChannel.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeT0npChannel.cc,v 1.1 2010/05/14 21:05:03 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeT0npChannel.cc,v 1.2 2010/06/25 09:44:08 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728
    2829#include "G4CascadeNPChannel.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CascadeT11pizNChannel.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeT11pizNChannel.cc,v 1.1 2010/05/14 21:05:03 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeT11pizNChannel.cc,v 1.2 2010/06/25 09:44:10 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728
    2829#include "G4CascadePiZeroPChannel.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CascadeT1NNChannel.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeT1NNChannel.cc,v 1.1 2010/05/14 21:05:03 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeT1NNChannel.cc,v 1.2 2010/06/25 09:44:12 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728
    2829#include "G4CascadePPChannel.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CascadeT31piNChannel.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeT31piNChannel.cc,v 1.1 2010/05/14 21:05:03 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeT31piNChannel.cc,v 1.2 2010/06/25 09:44:14 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728
    2829#include "G4CascadePiMinusPChannel.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CascadeT33piNChannel.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CascadeT33piNChannel.cc,v 1.1 2010/05/14 21:05:03 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CascadeT33piNChannel.cc,v 1.1.2.1 2010/06/25 09:44:16 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728
    2829#include "G4CascadePiPlusPChannel.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4CollisionOutput.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4CollisionOutput.cc,v 1.23 2010/05/21 18:07:30 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4CollisionOutput.cc,v 1.23.2.1 2010/06/25 09:44:18 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4Dineutron.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4Dineutron.cc,v 1.4 2010/05/06 20:46:04 mkelsey Exp $
    26 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4Dineutron.cc,v 1.5 2010/06/25 09:44:20 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2728//
    2829// ------------------------------------------------------------
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4Diproton.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4Diproton.cc,v 1.4 2010/05/06 20:46:04 mkelsey Exp $
    26 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4Diproton.cc,v 1.5 2010/06/25 09:44:22 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2728//
    2829// ------------------------------------------------------------
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4ElementaryParticleCollider.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4ElementaryParticleCollider.cc,v 1.64 2010/05/21 18:26:16 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4ElementaryParticleCollider.cc,v 1.64.2.1 2010/06/25 09:44:24 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4EquilibriumEvaporator.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4EquilibriumEvaporator.cc,v 1.32 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4EquilibriumEvaporator.cc,v 1.32.2.1 2010/06/25 09:44:26 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4EvaporationInuclCollider.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4EvaporationInuclCollider.cc,v 1.10 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4EvaporationInuclCollider.cc,v 1.11 2010/06/25 09:44:28 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4Fissioner.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4Fissioner.cc,v 1.28 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4Fissioner.cc,v 1.28.2.1 2010/06/25 09:44:30 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4InteractionCase.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InteractionCase.cc,v 1.1 2010/05/21 20:43:54 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InteractionCase.cc,v 1.2 2010/06/25 09:44:32 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100518  M. Kelsey -- Move code from Colliders' "bulletTargetSetter()"
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4IntraNucleiCascader.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4IntraNucleiCascader.cc,v 1.35 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4IntraNucleiCascader.cc,v 1.35.2.1 2010/06/25 09:44:34 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4InuclCollider.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InuclCollider.cc,v 1.30 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclCollider.cc,v 1.30.2.1 2010/06/25 09:44:36 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4InuclElementaryParticle.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InuclElementaryParticle.cc,v 1.6 2010/04/29 19:39:55 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclElementaryParticle.cc,v 1.7 2010/06/25 09:44:38 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100428  M. Kelsey -- Use G4InuclParticleNames enums instead of numbers,
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4InuclEvaporation.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InuclEvaporation.cc,v 1.18 2010/05/21 18:26:16 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclEvaporation.cc,v 1.19 2010/06/25 09:44:40 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4InuclNuclei.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InuclNuclei.cc,v 1.8 2010/04/07 17:28:35 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclNuclei.cc,v 1.8.2.1 2010/06/25 09:44:42 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100301  M. Kelsey -- Add function to create unphysical nuclei for use
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4InuclParticle.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InuclParticle.cc,v 1.6 2010/04/09 19:33:11 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclParticle.cc,v 1.7 2010/06/25 09:44:44 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100409  M. Kelsey -- Drop unused string argument from ctors.
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4InuclSpecialFunctions.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4InuclSpecialFunctions.cc,v 1.19 2010/03/19 05:03:23 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4InuclSpecialFunctions.cc,v 1.20 2010/06/25 09:44:46 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4KaonHypSampler.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4KaonHypSampler.cc,v 1.1 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4KaonHypSampler.cc,v 1.2 2010/06/25 09:44:48 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100512  M. Kelsey -- Replaces (old, untemplated) G4CascadeSampler
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4LorentzConvertor.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4LorentzConvertor.cc,v 1.23 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4LorentzConvertor.cc,v 1.23.2.1 2010/06/25 09:44:50 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100108  Michael Kelsey -- Use G4LorentzVector internally
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4NonEquilibriumEvaporator.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4NonEquilibriumEvaporator.cc,v 1.29 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4NonEquilibriumEvaporator.cc,v 1.29.2.1 2010/06/25 09:44:52 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4NuclWatcher.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4NuclWatcher.cc,v 1.2 2010/04/07 18:23:15 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4NuclWatcher.cc,v 1.3 2010/06/25 09:44:54 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100202  M. Kelsey -- Move most code here from .hh file, clean up
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4NucleiModel.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4NucleiModel.cc,v 1.48 2010/05/26 18:29:28 dennis Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4NucleiModel.cc,v 1.48.2.1 2010/06/25 09:44:56 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100112  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4PionNucSampler.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4PionNucSampler.cc,v 1.1 2010/05/15 00:55:01 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4PionNucSampler.cc,v 1.2 2010/06/25 09:44:58 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100512  M. Kelsey -- Replaces (old, untemplated) G4FinalStateSampler
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4PreCompoundCascadeInterface.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4PreCompoundCascadeInterface.cc,v 1.13 2010/05/21 18:07:30 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4PreCompoundCascadeInterface.cc,v 1.13.2.1 2010/06/25 09:45:00 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4PreCompoundInuclCollider.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4PreCompoundInuclCollider.cc,v 1.9 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4PreCompoundInuclCollider.cc,v 1.10 2010/06/25 09:45:02 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100114  M. Kelsey -- Remove G4CascadeMomentum, use G4LorentzVector directly
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4RegionModel.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4RegionModel.cc,v 1.16 2010/03/19 05:03:23 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4RegionModel.cc,v 1.17 2010/06/25 09:45:04 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100319  M. Kelsey -- Eliminate unnecessary use of std::pow()
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4UnboundPN.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4UnboundPN.cc,v 1.4 2010/05/06 20:46:04 mkelsey Exp $
    26 // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4UnboundPN.cc,v 1.5 2010/06/25 09:45:06 gunter Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2728//
    2829// ------------------------------------------------------------
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4VCascadeCollider.cc

    r1316 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4VCascadeCollider.cc,v 1.1 2010/05/21 17:56:34 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4VCascadeCollider.cc,v 1.1.2.1 2010/06/25 09:45:08 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728
    2829#include "G4VCascadeCollider.hh"
  • trunk/source/processes/hadronic/models/cascade/cascade/src/G4WatcherGun.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: G4WatcherGun.cc,v 1.13 2010/04/08 15:48:00 mkelsey Exp $
    26 // GEANT4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: G4WatcherGun.cc,v 1.13.2.1 2010/06/25 09:45:10 gunter Exp $
     27// GEANT4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100407  M. Kelsey -- Replace std::vector<>::resize(0) with ::clear(),
  • trunk/source/processes/hadronic/models/cascade/cascade/src/bindingEnergyAsymptotic.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: bindingEnergyAsymptotic.cc,v 1.11 2010/04/08 15:48:00 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: bindingEnergyAsymptotic.cc,v 1.12 2010/06/25 09:45:12 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100202  M. Kelsey -- Eliminate unnecessary use of std::pow()
  • trunk/source/processes/hadronic/models/cascade/cascade/src/bindingEnergyKummel.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: bindingEnergyKummel.cc,v 1.12 2010/03/19 05:03:23 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: bindingEnergyKummel.cc,v 1.13 2010/06/25 09:45:14 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100202  M. Kelsey -- Eliminate unnecessary use of std::pow()
  • trunk/source/processes/hadronic/models/cascade/cascade/src/paraMaker.cc

    r1315 r1337  
    2323// * acceptance of all terms of the Geant4 Software license.          *
    2424// ********************************************************************
    25 // $Id: paraMaker.cc,v 1.17 2010/06/01 17:20:31 mkelsey Exp $
    26 // Geant4 tag: $Name: geant4-09-04-beta-cand-01 $
     25//
     26// $Id: paraMaker.cc,v 1.18 2010/06/25 09:45:16 gunter Exp $
     27// Geant4 tag: $Name: geant4-09-04-beta-01 $
    2728//
    2829// 20100412  M. Kelsey -- Modify paraMaker[Truncated] to take buffer as argument
Note: See TracChangeset for help on using the changeset viewer.