StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGmtAlignmentMaker.cxx
1 // STAR headers
2 #include "StGmtAlignmentMaker.h"
3 #include "StEvent.h"
4 #include "StBFChain.h"
5 #include "EventT.h"
6 #include "StTpcDb/StTpcDb.h"
7 #include "StDetectorDbMaker/StGmtSurveyC.h"
8 #include "StMatrixF.hh"
9 
10 // ROOT headers
11 #include "TGeoMatrix.h"
12 #include "TROOT.h"
13 #include "TSystem.h"
14 #include "TKey.h"
15 #include "TBranch.h"
16 
17 // C/C++ headers
18 #include <cstdlib>
19 #include <iostream>
20 
21 //________________
22 StGmtAlignmentMaker::StGmtAlignmentMaker(const Char_t *name) : StMaker(name), fFile(0), fTree(0), fEvent(0) {
23  SetMinNoHits();
24  SetpCut();
25  SetOut();
26 }
27 
28 //________________
29 Int_t StGmtAlignmentMaker::Init() {
30  SetTree();
31  return kStOK;
32 }
33 
34 //________________
36  if (fFile) {
37  fFile = fTree->GetCurrentFile(); // just in case we switched to a new file
38  fFile->Write();
39  fTree->Print();
40  }
41  return kStOK;
42 }
43 
44 //________________
45 void StGmtAlignmentMaker::SetTree() {
46  StBFChain *chain = (StBFChain *)StMaker::GetChain();
47  if (!chain) return;
48 
49  Int_t split = 99; // by default, split Event in sub branches
50  Int_t comp = 1; // by default file is compressed
51  Int_t branchStyle = 1; // new style by default
52 
53  if (split < 0) {
54  branchStyle = 0;
55  split = -1 - split;
56  }
57  Int_t bufsize;
58  // Authorize Trees up to 2 Terabytes (if the system can do it)
59  TTree::SetMaxTreeSize(1000 * Long64_t(2000000000));
60  TFile *f = GetTFile();
61  if (f) {
62  f->cd();
63  }
64  else {
65  TString FName(fOut);
66  if (fMinNoHits > 0) {
67  FName += Form("_%i_%f2.1_", fMinNoHits, fpCut);
68  }
69  FName += gSystem->BaseName(chain->GetFileIn().Data());
70  FName.ReplaceAll("st_physics", "");
71  FName.ReplaceAll(".event", "");
72  FName.ReplaceAll(".daq", ".root");
73  fFile = new TFile(FName, "RECREATE", "TTree with SVT + SSD hits and tracks");
74  fFile->SetCompressionLevel(comp);
75  }
76  // Create a ROOT Tree and one superbranch
77  fTree = new TTree("T", "TTree with SVT + SSD hits and tracks");
78  fTree->SetAutoSave(1000000000); // autosave when 1 Gbyte written
79  bufsize = 64000;
80  if (split) {
81  bufsize /= 4;
82  }
83  fEvent = new EventT();
84  TTree::SetBranchStyle(branchStyle);
85  TBranch *branch = fTree->Branch("EventT", &fEvent, bufsize, split);
86  branch->SetAutoDelete(kFALSE);
87 }
88 
89 //________________
91  if (!EventT::RotMatrices()) {
92  MakeListOfRotations();
93  }
94 
95  // StEvent* pEvent = (StEvent*) GetInputDS("StEvent");
96  StEvent *pEvent = (StEvent *)StMaker::GetChain()->GetInputDS("StEvent");
97  if (pEvent && !fEvent->Build(pEvent, fpCut)) {
98  fTree->Fill(); // fill the tree
99  }
100  return kStOK;
101 }
102 
103 //________________
104 void StGmtAlignmentMaker::Print(Option_t *opt) const
105 {
106  if (!EventT::RotMatrices()) return;
107  TIter next(EventT::RotMatrices());
108  TGeoHMatrix *comb = 0;
109  while ((comb = (TGeoHMatrix *)next())) {
110  Int_t Id;
111  sscanf(comb->GetName() + 1, "%04i", &Id);
112  Int_t Ladder = Id % 100;
113  Int_t Layer = Id / 1000;
114  if (Layer > 7)
115  Layer = 7;
116  Int_t Wafer = (Id - 1000 * Layer) / 100;
117  std::cout << comb->GetName() << "\tLayer/Ladder/Wafer = " << Layer << "/" << Ladder << "/" << Wafer << std::endl;
118  comb->Print();
119  std::cout << "=================================" << endl;
120  }
121 }
122 
123 //________________
124 void StGmtAlignmentMaker::MakeListOfRotations() {
125  if (EventT::RotMatrices()) return;
126 
127  THashList *rotMHash = new THashList(100, 0);
128  EventT::SetRotMatrices(rotMHash);
129  const TGeoHMatrix &tpc2Glob = gStTpcDb->Tpc2GlobalMatrix();
130  for (int module = 0; module < kGmtNumModules; module++) {
131  TGeoHMatrix *WL = new TGeoHMatrix(StGmtOnModule::instance()->GetMatrix(module));
132  WL->SetName(Form("WL%i", module));
133  rotMHash->Add(WL);
134  TGeoHMatrix GmtOnGlob = tpc2Glob * StGmtOnTpc::instance()->GetMatrix(module) * (*WL);
135  TGeoHMatrix *R = new TGeoHMatrix(GmtOnGlob);
136  R->SetName(Form("R%i", module));
137  rotMHash->Add(R);
138  }
139  TIter next(rotMHash);
140  TGeoHMatrix *comb;
141  Int_t fail = 0;
142  while ((comb = (TGeoHMatrix *)next())) {
143  TString Name(comb->GetName());
144  if (Name.BeginsWith("R")) {
145  TGeoHMatrix *WL = (TGeoHMatrix *)rotMHash->FindObject(Form("WL%s", Name.Data() + 1));
146  if (!WL) {
147  std::cout << Form("WL%s", Name.Data() + 1) << " has not been found" << std::endl;
148  fail++;
149  }
150  }
151  }
152  assert(!fail);
153 #if 0
154  if (fFile) {
155  TDirectory *g = 0;
156  if (gDirectory != fFile) {
157  g = gDirectory;
158  fFile->cd();
159  }
160  rotMHash->Write();
161  if (g) g->cd();
162  }
163 #endif
164 }
Definition: EventT.h:47
Definition: Stypes.h:40