2 #include "StGmtAlignmentMaker.h"
6 #include "StTpcDb/StTpcDb.h"
7 #include "StDetectorDbMaker/StGmtSurveyC.h"
8 #include "StMatrixF.hh"
11 #include "TGeoMatrix.h"
22 StGmtAlignmentMaker::StGmtAlignmentMaker(
const Char_t *name) :
StMaker(name), fFile(0), fTree(0), fEvent(0) {
29 Int_t StGmtAlignmentMaker::Init() {
37 fFile = fTree->GetCurrentFile();
45 void StGmtAlignmentMaker::SetTree() {
51 Int_t branchStyle = 1;
59 TTree::SetMaxTreeSize(1000 * Long64_t(2000000000));
60 TFile *f = GetTFile();
67 FName += Form(
"_%i_%f2.1_", fMinNoHits, fpCut);
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);
77 fTree =
new TTree(
"T",
"TTree with SVT + SSD hits and tracks");
78 fTree->SetAutoSave(1000000000);
84 TTree::SetBranchStyle(branchStyle);
85 TBranch *branch = fTree->Branch(
"EventT", &fEvent, bufsize, split);
86 branch->SetAutoDelete(kFALSE);
91 if (!EventT::RotMatrices()) {
92 MakeListOfRotations();
96 StEvent *pEvent = (
StEvent *)StMaker::GetChain()->GetInputDS(
"StEvent");
97 if (pEvent && !fEvent->Build(pEvent, fpCut)) {
104 void StGmtAlignmentMaker::Print(Option_t *opt)
const
106 if (!EventT::RotMatrices())
return;
107 TIter next(EventT::RotMatrices());
108 TGeoHMatrix *comb = 0;
109 while ((comb = (TGeoHMatrix *)next())) {
111 sscanf(comb->GetName() + 1,
"%04i", &Id);
112 Int_t Ladder = Id % 100;
113 Int_t Layer = Id / 1000;
116 Int_t Wafer = (Id - 1000 * Layer) / 100;
117 std::cout << comb->GetName() <<
"\tLayer/Ladder/Wafer = " << Layer <<
"/" << Ladder <<
"/" << Wafer << std::endl;
119 std::cout <<
"=================================" << endl;
124 void StGmtAlignmentMaker::MakeListOfRotations() {
125 if (EventT::RotMatrices())
return;
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));
134 TGeoHMatrix GmtOnGlob = tpc2Glob * StGmtOnTpc::instance()->GetMatrix(module) * (*WL);
135 TGeoHMatrix *R =
new TGeoHMatrix(GmtOnGlob);
136 R->SetName(Form(
"R%i", module));
139 TIter next(rotMHash);
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));
147 std::cout << Form(
"WL%s", Name.Data() + 1) <<
" has not been found" << std::endl;
156 if (gDirectory != fFile) {