source: trunk/examples/extended/field/BlineTracer/include/G4BlineEventAction.hh @ 1023

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

update

File size: 3.9 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: G4BlineEventAction.hh,v 1.2 2006/06/29 17:14:56 gunter Exp $
28// GEANT4 tag $Name:  $
29//
30//
31// --------------------------------------------------------------------
32//
33// G4BlineEventAction
34//
35// Class description:
36//
37// Defines the EventAction used during tracing of magnetic field
38// lines. During the EndOfEventAction() it stores magneticfield lines
39// as polyline and polymarker objects.
40// These polyline and polymarker objects can be drawn by using the
41// DrawFieldLines() method.
42
43// --------------------------------------------------------------------
44// Author: Laurent Desorgher (desorgher@phim.unibe.ch)
45//         Created - 2003-10-06
46// --------------------------------------------------------------------
47#ifndef G4BlineEventAction_h
48#define G4BlineEventAction_h 1
49
50#include "G4UserEventAction.hh"
51#include "G4VisAttributes.hh"
52#include "G4Colour.hh"
53
54class G4Event;
55class G4Polyline;
56class G4Polymarker;
57class G4BlineTracer;
58
59class G4BlineEventAction : public G4UserEventAction
60{
61  public:  // with description
62
63    G4BlineEventAction(G4BlineTracer* aBlineTool);
64    ~G4BlineEventAction();
65
66    void BeginOfEventAction(const G4Event*);
67    void EndOfEventAction(const G4Event*);
68
69    void DrawFieldLines(G4double zoom, G4double theta, G4double phi); 
70    void ResetVectorObjectToBeDrawn();
71
72  public:  // with description
73
74    inline void SetDrawColour(G4Colour aColour) { DrawColour = aColour; }
75    inline void SetDrawBline(G4bool aBool) { DrawBline=aBool; }
76    inline void SetDrawPoints(G4bool aBool) { DrawPoints=aBool; }
77    inline void SetPointSize(G4double aVal) { PointSize=aVal; }
78    inline G4bool GetDrawBline() { return DrawBline; }
79
80  public:  // without description
81
82    // inline void SetDrawLineWidth(G4double aVal)
83    //   { TrajectoryVisAttributes.SetLineWidth(aVal); }
84    // inline void SetDrawLineStyle(G4VisAttributes::LineStyle aStyle)
85    //   { TrajectoryVisAttributes.SetLineStyle(aStyle); }
86      // Future implementation...
87
88  private:
89 
90   G4BlineTracer* fBlineTool;   
91   G4Colour DrawColour;
92   G4bool DrawBline;
93   G4bool DrawPoints;
94   G4double PointSize;
95   std::vector<G4VisAttributes*> TrajectoryVisAttributes;
96   std::vector<G4Polyline> TrajectoryPolyline;
97   std::vector<G4Polymarker> TrajectoryPoints;
98};
99
100#endif
Note: See TracBrowser for help on using the repository browser.