Import Geant4 2.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:42:07 +02:00
parent 103bda00c8
commit e7d7193284
3106 changed files with 171117 additions and 90550 deletions
@@ -0,0 +1,54 @@
// This code implementation is the intellectual property of
// the GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4RTJpegMaker.cc,v 1.4 2000/03/09 15:36:37 asaim Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
//
//
#include "G4RTJpeg.hh"
#include "G4RTJpegMaker.hh"
#include "G4RTJpegCoder.hh"
#include <g4std/fstream>
G4RTJpegMaker::G4RTJpegMaker()
{;}
G4RTJpegMaker::~G4RTJpegMaker()
{;}
void G4RTJpegMaker::CreateFigureFile(G4String fileName,
int nColumn, int nRow,
u_char* colorR,
u_char* colorG,
u_char* colorB)
{
G4JpegCoder aFigure(colorR,colorG,colorB);
G4JpegProperty aProperty;
aProperty.nColumn = nColumn;
aProperty.nRow = nRow;
aProperty.Units = 0;
aProperty.HDensity = 1;
aProperty.VDensity = 1;
aProperty.ExtensionCode = 0;
aProperty.Comment = "Geant4 Ray Tracer Version 1.0 by M.Asai K.Minamimoto C.Kishinaga";
aFigure.SetJpegProperty(aProperty);
aFigure.DoCoding();
char* jpegAddress;
int jpegSize;
aFigure.GetJpegData(&jpegAddress,jpegSize);
G4std::ofstream ofs;
ofs.open(fileName,G4std::ios::out);
ofs.write(jpegAddress,jpegSize);
ofs.close();
}