StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
digproto.h
1 #ifndef MAPS_DIGPROTO_H
2 #define MAPS_DIGPROTO_H
3 
4 #include <TNamed.h>
5 #include <TList.h>
6 #include <TGraph.h>
7 #include "Riostream.h"
8 #include "vector"
9 
10 // ROOT classes
11 #include "TString.h"
12 #include "TObject.h"
13 #include "TVector.h"
14 #include "TFile.h"
15 #include "TSystem.h"
16 #include "TRandom.h"
17 #include "TH1.h"
18 #include "TH2.h"
19 #include "TObjArray.h"
20 #include "TTree.h"
21 #include "TBranch.h"
22 #include "TClonesArray.h"
23 using namespace std;
24 
25 class DIGInitialize;
26 class DIGPlane;
27 class DIGADC;
28 class DIGBeam;
29 class DIGParticle;
30 class DIGAction;
31 class DIGEvent;
32 class DIGMAPS;
33 /*
34 This class is a dummy class to be used as a framework if we want to create a new class for DIGMAPS.
35 */
36 //==============================================================================
37 class DIGProto : public TObject {
38  public:
39  DIGProto();
40  DIGProto(Float_t myvar);
41  DIGProto(DIGProto& adigproto);
42  virtual ~DIGProto();
43  void Clear(const Option_t * /*option*/ = "");
44  void PrintInfo();
45 
46  Float_t GetMyvar(){return fMyvar;}
47 
48  void SetMyvar(Float_t Myvar);
49 
50 
51  protected:
52 
53  Float_t fMyvar;
54 
55  ClassDef(DIGProto,1);
56 };
57 
58 
59 
60 //==============================================================================
61 
62 #endif
Definition: digadc.h:36