Changeset 1230 for trunk/examples/extended/errorpropagation
- Timestamp:
- Jan 8, 2010, 3:02:48 PM (16 years ago)
- Location:
- trunk/examples/extended/errorpropagation
- Files:
-
- 2 edited
-
GNUmakefile (modified) (2 diffs)
-
errprop.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/extended/errorpropagation/GNUmakefile
r807 r1230 1 # $Id: GNUmakefile,v 1. 1 2007/05/28 08:31:53 gcosmoExp $1 # $Id: GNUmakefile,v 1.2 2009/03/06 09:50:28 gbarrand Exp $ 2 2 # -------------------------------------------------------------- 3 3 # GNUmakefile for examples module. Gabriele Cosmo, 06/04/98. … … 15 15 all: lib bin 16 16 17 ifdef G4ANALYSIS_USE18 CPPFLAGS += -DG4ANALYSIS_USE19 endif20 21 17 include $(G4INSTALL)/config/architecture.gmk 22 23 ifdef G4ANALYSIS_USE24 # for the aida-config command see the README file25 CPPFLAGS += `aida-config --include`26 LOADLIBS += `aida-config --lib`27 endif28 18 29 19 include $(G4INSTALL)/config/binmake.gmk -
trunk/examples/extended/errorpropagation/errprop.cc
r807 r1230 48 48 void Initialize(); 49 49 G4ErrorTarget* BuildTarget( G4int iTarget ); 50 void ProcessEvent( G4int iProp, uint nEv );50 void ProcessEvent( G4int iProp, size_t nEv ); 51 51 void Finalize(); 52 52 … … 77 77 } 78 78 79 uint nEvents = 3;80 for( uint ii = 0; ii < nEvents; ii++ ){79 size_t nEvents = 3; 80 for( size_t ii = 0; ii < nEvents; ii++ ){ 81 81 ProcessEvent( iProp, ii ); 82 82 } … … 149 149 150 150 151 void ProcessEvent( G4int iProp, uint )151 void ProcessEvent( G4int iProp, size_t ) 152 152 { 153 153
Note:
See TracChangeset
for help on using the changeset viewer.
