source: trunk/examples/extended/runAndEvent/RE02/src/RE02PSFlatSurfaceCurrent.cc @ 1292

Last change on this file since 1292 was 1230, checked in by garnier, 15 years ago

update to geant4.9.3

File size: 3.4 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: RE02PSFlatSurfaceCurrent.cc,v 1.3 2007/05/18 18:16:28 asaim Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30// RE02PSFlatSurfaceCurrent
31#include "RE02PSFlatSurfaceCurrent.hh"
32
33///////////////////////////////////////////////////////////////////////////////
34//
35//  The developement and research on this code is supported by Core Research
36// for Evolutional Science and Technology (CREST) Program of Japan Science
37// and Technology Corporation (JST). You may acknowlege to JST and authers
38// whenever you publish your results using this code, as well as the Geant4
39// collaboration. Both JST and authers remain to have a right to refuse to use
40// this code for any case.
41//   Tsukasa Aso    ( aso@toyama-cmt.ac.jp   )
42//   Akinori Kimura ( AKimura@ashitech.ac.jp )
43//
44///////////////////////////////////////////////////////////////////////////////
45// (Description)
46//   This is a primitive scorer class for scoring cell charge.
47//   The Cell Charge is defined by  a sum of charge inside the cell
48//  which calculates the deposited charge in the cell.
49//   
50//   
51//
52//
53//
54// Created: 2006-06-20  Tsukasa ASO, Akinori Kimura.
55//
56///////////////////////////////////////////////////////////////////////////////
57
58RE02PSFlatSurfaceCurrent::RE02PSFlatSurfaceCurrent(G4String name, G4int direction,
59                                             G4int nx, G4int ny, G4int nz)
60  :G4PSFlatSurfaceCurrent(name,direction),fNx(nx),fNy(ny),fNz(nz)
61{;}
62
63RE02PSFlatSurfaceCurrent::~RE02PSFlatSurfaceCurrent()
64{;}
65
66G4int RE02PSFlatSurfaceCurrent::GetIndex(G4Step* aStep)
67{
68  const G4VTouchable* touchable = aStep->GetPreStepPoint()->GetTouchable();
69  G4int ix = touchable->GetReplicaNumber(1);
70  G4int iy = touchable->GetReplicaNumber(2);
71  G4int iz = touchable->GetReplicaNumber(0);
72 
73  return iy*fNx*fNz+ix*fNz+iz;
74}
Note: See TracBrowser for help on using the repository browser.