StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
digproto.cxx
1 // //
3 // DIGProto //
4 // Dummy class //
5 // //
6 // //
7 // //
8 // //
9 // //
10 // //
11 // //
13 #include <digproto.h>
14 
15 
16 #include <TROOT.h> // for gROOT object
17 #include <TMath.h>
18 #include <TMatrixD.h>
19 #include <TCanvas.h>
20 #include <TGraph.h>
21 #include <TAxis.h>
22 #include <TRandom3.h>
23 #include <TFile.h>
24 #include <TTree.h>
25 #include <TBranch.h>
26 #include <TClonesArray.h>
27 
28 //include other classes.h:
29 
30 
31 using namespace std;
32 
33 //==============================================================================
34 ClassImp(DIGProto)
35 //______________________________________________________________________________
36 //
38 {
39  //
40  // default constructor
41  //
42 }
43 //______________________________________________________________________________
44 //
45 DIGProto::DIGProto(Float_t myvar)
46 {
47  fMyvar = myvar;
48 }
49 //______________________________________________________________________________
50 //
51 DIGProto::~DIGProto() {
52  //
53  // virtual destructor
54  //
55 }
56 //______________________________________________________________________________
57 //
58 DIGProto::DIGProto(DIGProto & adigproto) : TObject()
59 {
60  fMyvar = adigproto.GetMyvar();
61 
62 }
63 //______________________________________________________________________________
64 //
65 void DIGProto::Clear(const Option_t *)
66 {
67  // delete pointers. fDIGParticleArray->Clear("C");
68 
69 }
70 //______________________________________________________________________________
71 //
72 void DIGProto::PrintInfo() {
73  std::cout<<"---------DIGProto properties------------- "<<endl;
74  //std::cout<<"fEntryX fEntryY fExitX fExitY fEnergy_deposited"<<endl;
75  // std::cout<<fEntryX<<" "<< fEntryY<<" "<<fExitX <<" "<<fExitY <<" "<<fEnergy_deposited <<endl;
76 }
77 //______________________________________________________________________________
78 //
79 void DIGProto::SetMyvar(Float_t Myvar){
80  fMyvar=Myvar;
81 }
82 //______________________________________________________________________________
83 //