Skip to content
Snippets Groups Projects

Replay of MR 219

Closed Pierre-Alain Loizeau requested to merge mr219_rich_v23a into master
Files
3
+ 25
0
Same as rich_v22a but with fake_vol decended of mirror_half removed.
Caused problems in MacOs. See Cbmroot corresponding commit with updates
code and tag.
root << EOT
RichGeoCreator* rich = new RichGeoCreator()
rich->Create()
EOT
Then I added a dummy translation matrix
root << EOT
TFile* file
file = TFile::Open("geometry/rich/rich_v23a.geo.root",)
file = TFile::Open("geometry/rich/rich_v23a.geo.root","UPDATE")
file->GetListOfKeys()
file->GetListOfKeys()->Print()
TGeoTranslation trans = new TGeoTranslation("trans",0,0,0)
TGeoTranslation* trans = new TGeoTranslation("trans",0,0,0)
trans->Write()
file->GetListOfKeys()->Print()
file->Close()
EOT
Loading