forked from alisw/AliRoot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
macros for reconstruction for both cases: cosmic and PDC08
- Loading branch information
alla
committed
Feb 22, 2008
1 parent
4d60df0
commit ddde642
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
void rec() | ||
{ | ||
AliLog::SetModuleDebugLevel("T0", 1); | ||
AliReconstruction rec; | ||
rec.SetRunReconstruction("T0"); | ||
rec.SetRunVertexFinder(kFALSE); | ||
rec.SetRunTracking(""); | ||
|
||
rec.SetNumberOfEventsPerFile(-1); | ||
rec.SetRunQA(kFALSE); | ||
|
||
// rec.SetEventRange(0, 1000); | ||
|
||
// rec.SetOption("T0","cosmic"); | ||
// rec.SetInput("/home/alla/alice/testFeb08/08000019174005.10.root"); | ||
|
||
rec.SetOption("T0","pdc"); | ||
|
||
rec.Run(); | ||
} |