Changeset f4900ab in git
- Timestamp:
- Nov 19, 2020, 6:43:59 PM (4 years ago)
- Parents:
- 66cf877
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r66cf877 rf4900ab 2338 2338 tmp/external/pid/mRICH/src/mRICH.$(ObjSuf) \ 2339 2339 tmp/external/pid/tofBarrel/src/tofBarrel.$(ObjSuf) \ 2340 tmp/external/pid/quintRICH/src/CF4rich.$(ObjSuf) 2340 tmp/external/pid/quintRICH/src/CF4rich.$(ObjSuf) \ 2341 tmp/external/pid/dRICH/dualRICH.$(ObjSuf) 2341 2342 2342 2343 … … 2368 2369 external/pid/tofBarrel/src/tofBarrel.C 2369 2370 2371 tmp/external/pid/dRICH/dualRICH.$(ObjSuf): \ 2372 external/pid/dRICH/PID.h \ 2373 external/pid/dRICH/genericDetector.h \ 2374 external/pid/dRICH/genericRICH.h \ 2375 external/pid/dRICH/dualRICH.h \ 2376 external/pid/dRICH/dualRICH.C 2370 2377 2371 2378 -
modules/EICPIDDetector.cc
r66cf877 rf4900ab 51 51 #include "pid/mRICH/src/mRICH.h" 52 52 #include "pid/tofBarrel/src/tofBarrel.h" 53 #include "pid/dRICH/dualRICH.h" 53 54 54 55 #include <algorithm> … … 129 130 } 130 131 else if (fDetectorName == "mRICH") { 131 fPIDDetector = new mRICH(fTrackResolution,fTimeResolution, fPixelSize );132 fPIDDetector = new mRICH(fTrackResolution,fTimeResolution, fPixelSize, fetaLow, fetaHigh); 132 133 //fPIDDetector = new mRICH(0.00175, 1, 3); 133 134 } … … 137 138 else if (fDetectorName == "tofBarrel") { 138 139 fPIDDetector = new tofBarrel(100, fetaLow, fetaHigh, 10); 140 } 141 else if (fDetectorName == "dualRICH_aerogel") { 142 fPIDDetector = new dualRICH_aerogel(); 143 } 144 else if (fDetectorName == "dualRICH_C2F6") { 145 fPIDDetector = new dualRICH_C2F6(); 139 146 } else { 140 147 std::cout << "No valid EIC PID Detector technology was specified!" << std::endl;
Note:
See TracChangeset
for help on using the changeset viewer.