]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
move to new layout
authorjthaeder <jthaeder@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 2 Mar 2013 15:26:12 +0000 (15:26 +0000)
committerjthaeder <jthaeder@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 2 Mar 2013 15:26:12 +0000 (15:26 +0000)
TPC/CMakelibTPCmon.pkg
TPC/TPCmonLinkDef.h

index c4566ff59ef79d11611a404cca9c5bd2b5d11708..2f9aeb255c82d672259862ced4460d3961008a67 100644 (file)
 # SHLIBS - Shared Libraries and objects for linking (Executables only)           #
 #--------------------------------------------------------------------------------#
 
-set ( SRCS   AliTPCMonitorConfig.cxx AliTPCMonitorAltro.cxx AliTPCMonitorFFT.cxx AliTPCMonitorMappingHandler.cxx AliTPCMonitor.cxx AliTPCMonitorDateFile.cxx AliTPCMonitorDateFormat.cxx AliTPCMonitorDialog.cxx)
+set ( SRCS   
+    Monitor/AliTPCMonitorConfig.cxx 
+    Monitor/AliTPCMonitorAltro.cxx 
+    Monitor/AliTPCMonitorFFT.cxx 
+    Monitor/AliTPCMonitorMappingHandler.cxx 
+    Monitor/AliTPCMonitor.cxx 
+    Monitor/AliTPCMonitorDateFile.cxx 
+    Monitor/AliTPCMonitorDateFormat.cxx 
+    Monitor/AliTPCMonitorDialog.cxx)
 
 string ( REPLACE ".cxx" ".h" HDRS "${SRCS}" )
 
 set ( DHDR  TPCmonLinkDef.h)
 
-set ( EINCLUDE  RAW STEER)
+set ( EINCLUDE  TPC/Monitor RAW STEER)
 
 if( ALICE_TARGET STREQUAL "win32gcc")
        
@@ -40,10 +48,10 @@ if( ALICE_TARGET STREQUAL "win32gcc")
 endif( ALICE_TARGET STREQUAL "win32gcc")
 
 if (DATE_ROOT)
-  set ( SRCS ${SRCS}   AliTPCMonitorDateMonitor.cxx)
+  set ( SRCS ${SRCS}   Monitor/AliTPCMonitorDateMonitor.cxx)
   set ( PACKBLIBS ${PACKBLIBS}  ${DMONLIBS})
   set ( ELIBSDIR )
   set ( ELIBS )
-  set ( HDRS ${HDRS}   AliTPCMonitorDateMonitor.h)
+  set ( HDRS ${HDRS}   Monitor/AliTPCMonitorDateMonitor.h)
   set ( EINCLUDE ${EINCLUDE}  ${DATE_COMMON_DEFS} ${DATE_MONITOR_DIR})
 endif(DATE_ROOT)
index d34df4eb6801d1107ff92e68347d7b40392f0150..9b3a1c2f1bbd3ebd2652d1d4bc442a5a213aadbc 100755 (executable)
 /* New TPC monitoring package from Stefan Kniege. The monitoring package can be started by running TPCMonitor.C macro located in macros folder.
 /* */
 
-
 #pragma link off all globals;
 #pragma link off all classes;
 #pragma link off all functions;
 
-#pragma link C++ class  AliTPCMonitorConfig+; 
-#pragma link C++ class  AliTPCMonitorAltro+; 
-#pragma link C++ class  AliTPCMonitorFFT+; 
-#pragma link C++ class  AliTPCMonitorMappingHandler+;
+//  re - write for upgraded TPC --- not before
+
+#pragma link C++ class  AliTPCMonitorConfig+;         // Config Conatainer
+#pragma link C++ class  AliTPCMonitorAltro+;          // ALtro Mapping ...  to be checked if ituseds Base mapping
+#pragma link C++ class  AliTPCMonitorFFT+;            // FFT of pad signals
+#pragma link C++ class  AliTPCMonitorMappingHandler+; // TPC mapper ... duplication ... but no time to be spend
 
 #ifdef ALI_DATE
-#pragma link C++ class  AliTPCMonitorDateMonitor+;
+#pragma link C++ class  AliTPCMonitorDateMonitor+;    // Used to read "Date Format" --- check if it is still used   
 #endif
-#pragma link C++ class  AliTPCMonitorDateFile+;  
-#pragma link C++ class  AliTPCMonitorDateFormat+;  
-#pragma link C++ class  AliTPCMonitorDialog+;  
-#pragma link C++ class  AliTPCMonitor+; 
+#pragma link C++ class  AliTPCMonitorDateFile+;       // Used to read "Date Format" --- check if it is still used   
+#pragma link C++ class  AliTPCMonitorDateFormat+;     // Used to read "Date Format" --- check if it is still used   
+#pragma link C++ class  AliTPCMonitorDialog+;         // dialog for opening data streams
+#pragma link C++ class  AliTPCMonitor+;               // Main monitor class
 
 #endif