- bouchet's home page
- Posts
- 2016
- 2015
- December (1)
- November (3)
- October (2)
- September (2)
- August (2)
- June (2)
- April (5)
- March (2)
- February (3)
- January (2)
- 2014
- December (2)
- November (2)
- October (3)
- September (2)
- August (3)
- July (1)
- June (3)
- May (6)
- April (6)
- March (1)
- February (2)
- January (1)
- 2013
- December (2)
- November (3)
- October (3)
- September (4)
- August (1)
- July (1)
- May (4)
- April (6)
- March (4)
- February (3)
- 2012
- 2011
- December (2)
- November (2)
- October (4)
- September (1)
- August (2)
- July (6)
- June (2)
- May (3)
- April (3)
- March (2)
- 2010
- 2009
- December (2)
- November (1)
- October (3)
- September (1)
- August (1)
- July (1)
- June (2)
- April (1)
- March (2)
- February (2)
- January (1)
- 2008
- My blog
- Post new blog entry
- All blogs
simulation with StarGenerator framework
last presentation of Jason Webb : collaboration meeting 2013
goal : setup hijing simulation
The main part of the work is done by the macro :
StRoot/StarGenerator/macros/starsim_hijing.C
where :
By modying the chain option to run the PXL reco as well :
It breaks with the following error :
Looking at some root forums, the following suggestion was to add :
Now it runs fine but it seems that no input file is used during the BFC reco.
goal : setup hijing simulation
The main part of the work is done by the macro :
StRoot/StarGenerator/macros/starsim_hijing.C
where :
- the hijing event is setup : choice of collision species, impact parameter
- some cuts on the event , when the fzd is created, are possible
1) setup the # of events
void starsim( Int_t nevents=50)
2) setup which geometry and using AgML
TString simple = "y2012 geant gstar usexgeom agml ";
3) here we setup the event generator where additional cuts are possible via StarPrimaryMaker class
primary = new StarPrimaryMaker();
4) This function is used for the collision setup
void Hijing() { StarHijing *hijing = new StarHijing("hijing"); hijing->SetTitle("Hijing 1.383"); hijing->SetFrame("CMS",200.0); hijing->SetBlue("Au"); hijing->SetYell("Au"); hijing->SetImpact(0.0, 30.0); primary -> AddGenerator(hijing); primary -> SetCuts( 1.0E-6 , -1., -1.5, +1.5 ); }second goal : run hijing + BFC in 1 go
By modying the chain option to run the PXL reco as well :
TString simple = "y2013_1 geant gstar usexgeom agml tfs MakeEvent ITTF Sti Idst IAna Tree logger genvtx big fzin clearmem";
It breaks with the following error :
BFC:ERROR - TPluginManager::FindHandler : Cannot find plugin handler for TVirtualStreamerInfo! Does $ROOTSYS/etc/plugins/TVirtualStreamerInfo exist? BFC:FATAL - TUnixSystem::DispatchSignals : segmentation violation Root > Function starsim() busy flag cleared Function bfc() busy flag cleared Function bfc() busy flag cleared
gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo","*","TStreamerInfo","RIO","TStreamerInfo()")
Now it runs fine but it seems that no input file is used during the BFC reco.
Groups:
- bouchet's blog
- Login or register to post comments