Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:25

0001 
0002 CC = g++
0003 
0004 all: lateralAllCalib
0005 
0006 lateralAllCalib: lateralAllCalib.cpp
0007         $(CC) lateralAllCalib.cpp -o lateralAllCalib `root-config --libs` -lMinuit -I`root-config --incdir` -I.
0008 
0009 clean:
0010         rm -f lateralAllCalib
0011