source: trunk/examples/extended/parameterisations/gflash/src/ExGflashHit.cc @ 807

Last change on this file since 807 was 807, checked in by garnier, 16 years ago

update

File size: 3.1 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#include "ExGflashHit.hh"
28
29#include "G4VVisManager.hh"
30#include "G4Colour.hh"
31#include "G4VisAttributes.hh"
32#include "G4LogicalVolume.hh"
33#include "G4ios.hh"
34
35G4Allocator<ExGflashHit>ExGflashHitAllocator;
36
37ExGflashHit::ExGflashHit()
38{pLogV=NULL;}
39
40ExGflashHit::ExGflashHit(G4LogicalVolume* logVol)
41:pLogV(logVol)
42{;}
43
44ExGflashHit::~ExGflashHit()
45{;}
46
47ExGflashHit::ExGflashHit(const ExGflashHit &right)
48:G4VHit()
49//@@@ ExGflashHit:Is it right with the init?
50{
51  edep = right.edep;
52  pos = right.pos; 
53  start =right.start; 
54  rot = right.rot;
55  pLogV = right.pLogV;
56  crystalnumber = right.crystalnumber;
57}
58
59const ExGflashHit & ExGflashHit::operator=(const ExGflashHit &right)
60{
61  edep = right.edep;
62  start =right.start; 
63  pos = right.pos;
64  rot = right.rot;
65  pLogV = right.pLogV;
66  crystalnumber = right.crystalnumber;
67  crystalnumber = right.crystalnumber;
68  return *this;
69}
70
71int ExGflashHit::operator==(const ExGflashHit &right) const
72{
73// @@@@ return 0;
74        if ((pos==right.pos) &&  (edep == right.edep)) return true;
75        else return false;
76       
77}
78
79void ExGflashHit::Draw()
80{
81  G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance();
82  if(pVVisManager)
83  {
84    G4Transform3D trans(rot,pos);
85    G4VisAttributes attribs;
86    const G4VisAttributes* pVA = pLogV->GetVisAttributes();
87    if(pVA) attribs = *pVA;
88    G4Colour colour(1.,0.,0.);
89    attribs.SetColour(colour);
90    attribs.SetForceWireframe(false);
91    attribs.SetForceSolid(true);
92    pVVisManager->Draw(*pLogV,attribs,trans);
93  }
94}
95
96void ExGflashHit::Print()
97{
98}
99
100
101
102
103
104
105
106
107
Note: See TracBrowser for help on using the repository browser.