Difference between revisions of "Day5, 10/04/2011"

From New IAC Wiki
Jump to navigation Jump to search
Line 3: Line 3:
 
* gedit src/ExN02SteppingVerbose.cc
 
* gedit src/ExN02SteppingVerbose.cc
  
**ExN02SteppingVerbose::ExN02SteppingVerbose()
+
**
 +
ExN02SteppingVerbose::ExN02SteppingVerbose()
 
{
 
{
 
   outfile.open("sigmaR.txt");  //added 10/4/11
 
   outfile.open("sigmaR.txt");  //added 10/4/11
Line 10: Line 11:
 
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
 
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
  
**ExN02SteppingVerbose::~ExN02SteppingVerbose()
+
**
 +
ExN02SteppingVerbose::~ExN02SteppingVerbose()
 
{
 
{
 
   outfile.close();    //added 10/4/11
 
   outfile.close();    //added 10/4/11
Line 21: Line 23:
 
* gedit include/ExN02SteppingVerbose.hh
 
* gedit include/ExN02SteppingVerbose.hh
  
**class ExN02SteppingVerbose : public G4SteppingVerbose  
+
**
 +
class ExN02SteppingVerbose : public G4SteppingVerbose  
 
{
 
{
 
  public:
 
  public:
Line 35: Line 38:
  
 
};
 
};
 +
 +
 +
 +
* gedit src/ExN02SteppingVerbose.cc
 +
 +
**
 +
void ExN02SteppingVerbose::StepInfo()
 +
{
 +
  CopyState();
 +
 
 +
  G4int prec = G4cout.precision(3);
 +
 +
  outfile << "Roman is a Grad Student" << G4endl;

Revision as of 21:08, 4 October 2011

go back

  • gedit src/ExN02SteppingVerbose.cc

ExN02SteppingVerbose::ExN02SteppingVerbose() {

 outfile.open("sigmaR.txt");   //added 10/4/11

}

//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......

ExN02SteppingVerbose::~ExN02SteppingVerbose() {

 outfile.close();    //added 10/4/11

}

//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......

    • void ExN02SteppingVerbose::TrackingStarted() print first step
  • gedit include/ExN02SteppingVerbose.hh

class ExN02SteppingVerbose : public G4SteppingVerbose {

public:
  
 ExN02SteppingVerbose();
~ExN02SteppingVerbose();
 void StepInfo();
 void TrackingStarted();
private:   //added 10/4/11
 std::ofstream outfile;

};


  • gedit src/ExN02SteppingVerbose.cc

void ExN02SteppingVerbose::StepInfo() {

 CopyState();
 
 G4int prec = G4cout.precision(3);
 outfile << "Roman is a Grad Student" << G4endl;