|
| 1 | +#!/usr/bin/env python |
| 2 | +# |
| 3 | +# Original author Rob Kutschke. |
| 4 | +# |
| 5 | +#!/usr/bin/env python |
| 6 | +# |
| 7 | +# Original author Rob Kutschke. |
| 8 | +# |
| 9 | + |
| 10 | +import os, re |
| 11 | +Import('env') |
| 12 | +Import('mu2e_helper') |
| 13 | + |
| 14 | +helper=mu2e_helper(env) |
| 15 | + |
| 16 | +babarlibs = env['BABARLIBS'] |
| 17 | +rootlibs = env['ROOTLIBS'] |
| 18 | +extrarootlibs = [ 'Geom', 'Geom', 'GeomPainter', 'Ged', 'Graf3d', 'Eve','EG', 'RGL','Gui', "Gdml" , "Core", "Rint", "ROOTEve","ROOTWebDisplay"] |
| 19 | + |
| 20 | +userlibs = [ rootlibs, |
| 21 | + extrarootlibs, |
| 22 | + babarlibs, |
| 23 | + 'mu2e_DataProducts', |
| 24 | + 'mu2e_Mu2eBTrk', |
| 25 | + 'mu2e_TrkReco', |
| 26 | + 'mu2e_BTrkData', |
| 27 | + 'mu2e_Mu2eUtilities', |
| 28 | + 'mu2e_MCDataProducts', |
| 29 | + 'mu2e_RecoDataProducts', |
| 30 | + 'mu2e_GlobalConstantsService_GlobalConstantsService_service', |
| 31 | + 'mu2e_GlobalConstantsService', |
| 32 | + 'mu2e_GeometryService', |
| 33 | + 'mu2e_ConditionsService', |
| 34 | + 'mu2e_CalorimeterGeom', |
| 35 | + 'mu2e_TrackerGeom', |
| 36 | + 'mu2e_CosmicRayShieldGeom', |
| 37 | + 'mu2e_GeomPrimitives', |
| 38 | + 'mu2e_ConfigTools', |
| 39 | + 'mu2e_Mu2eInterfaces', |
| 40 | + 'mu2e_GeneralUtilities', |
| 41 | + 'art_Framework_Core', |
| 42 | + 'art_Framework_Principal', |
| 43 | + 'art_Framework_Services_Registry', |
| 44 | + 'art_root_io_tfile_support', |
| 45 | + 'art_root_io_TFileService', |
| 46 | + 'art_Framework_Services_Optional_RandomNumberGenerator_service', |
| 47 | + 'art_Persistency_Common', |
| 48 | + 'art_Persistency_Provenance', |
| 49 | + 'art_Utilities', |
| 50 | + 'canvas', |
| 51 | + 'MF_MessageLogger', |
| 52 | + 'fhiclcpp', |
| 53 | + 'fhiclcpp_types', |
| 54 | + 'tbb', |
| 55 | + 'cetlib', |
| 56 | + 'cetlib_except', |
| 57 | + 'Trajectory', |
| 58 | + 'General', |
| 59 | + 'CLHEP', |
| 60 | + 'HepPDT', |
| 61 | + 'HepPID', |
| 62 | + 'Core', |
| 63 | + 'boost_filesystem', |
| 64 | + 'boost_system' |
| 65 | + ] |
| 66 | + |
| 67 | + |
| 68 | +# when using ClassDef, tell the build to include the |
| 69 | +# dictionary in the mainlib |
| 70 | +helper.classDef(True) |
| 71 | + |
| 72 | +helper.make_dict_and_map() |
| 73 | + |
| 74 | +mainlib = helper.make_mainlib([userlibs]) |
| 75 | + |
| 76 | +#helper.make_plugins( [ 'mu2e_REveEventDisplay',userlibs ] ) |
| 77 | + |
| 78 | + |
| 79 | + |
| 80 | +# This tells emacs to view this file in python mode. |
| 81 | +# Local Variables: |
| 82 | +# mode:python |
| 83 | +# End: |
0 commit comments