@ -0,0 +1,119 @@ | |||||
clear all | |||||
t=(-1000:0.1:1000);% fs | |||||
Dt=4; % fs | |||||
Dw=0.441/Dt*2*pi; | |||||
c=0.3; %micron/fs | |||||
lambda0=0.8; %lunghezza d'onda centrale in micron | |||||
w0=2*pi*c/lambda0;%pulsazione centrale in fs^-1 | |||||
kk=1; | |||||
w=(w0-w0/kk:1e-4*2*pi:w0+w0/kk);% fs^-1 | |||||
specI2=exp(-4*log(2)*(w-w0).^2/Dw^2); | |||||
figure(1) | |||||
plot(w,specI2,'.') | |||||
L=500; %micron | |||||
%silica | |||||
n0=1.453;%indice di rifrazione | |||||
d1nl=-0.01728;%derivata prima di n in lambda micron^-1 | |||||
d2nl=0.03988; %derivata seconda di n in lambda micron^-2 | |||||
d3nl=-0.2388; %derivata terza di n in lambda micron^-3 | |||||
% % BK7 | |||||
% n0=1.511;%indice di rifrazione | |||||
% d1nl=-0.01456;%derivata prima di n in lambda micron^-1 | |||||
% d2nl=0.05589; %derivata seconda di n in lambda micron^-2 | |||||
% d3nl=-0.2877; %derivata terza di n in lambda micron^-3 | |||||
% % CaF2 | |||||
% n0=1.4306; | |||||
% d1nl=-0.0104; | |||||
% d2nl=0.0304; | |||||
% d3nl=-0.1662; | |||||
% % Calcite ordinario | |||||
% n0=1.6488; | |||||
% d1nl=-0.031048300320746; | |||||
% d2nl=0.081657209660690; | |||||
% d3nl=-0.476683581496218; | |||||
% % Calcite straordinario | |||||
% n0=1.481916136599520; | |||||
% d1nl=-0.012620442731315; | |||||
% d2nl=0.044786681918652; | |||||
% d3nl=-0.232969865621158; | |||||
% | |||||
% % Benzene | |||||
% n0=1.485267310086479; | |||||
% d1nl=-0.029582350419277; | |||||
% d2nl=0.115024263003249; | |||||
% d3nl=-0.609046368893473; | |||||
d1nw=-lambda0^2/2/pi/c*d1nl; %derivata prima indice di rifrazione in funzione di w fs^-1 | |||||
d2nw=lambda0^3/4/pi^2/c^2*(2*d1nl+lambda0*d2nl); %derivata seconta indice di rifrazione in funzione di w fs^-2 | |||||
d3nw=-lambda0^4/8/pi^3/c^3*(6*d1nl+6*lambda0*d2nl+lambda0^2*d3nl); %derivata terza indice di rifrazione in funzione di w fs^-3 | |||||
phi0=n0*w0*L/c; | |||||
phi1=L/c*(n0+w0*d1nw); | |||||
phi2=L/c*(2*d1nw+w0*d2nw); | |||||
phi3=L/c*(3*d2nw+w0*d3nw); | |||||
dim=length(w); | |||||
A=sqrt(specI2); | |||||
y1=t*0; | |||||
y2=t*0; | |||||
AA=w*0; | |||||
phi=w*0; | |||||
tic | |||||
for i=1:1:dim | |||||
phi(i)=0*phi0+0*phi1*(w(i)-w0)+phi2*(w(i)-w0).^2/2+phi3*(w(i)-w0).^3/6; | |||||
y1=A(i)*cos(w(i)*t-phi(i))+y1; | |||||
y2=A(i)*cos(w(i)*t)+y2; | |||||
AA(i)=A(i); | |||||
i | |||||
end | |||||
toc | |||||
figure(2) | |||||
plot(t,y1,t,y2) | |||||
mac1=xcorr(y1,y1); | |||||
mac2=xcorr(y2,y2); | |||||
shg1=4*xcorr(y1.^2,y1.^2)+4*xcorr(y1.^3,y1)+4*xcorr(y1,y1.^3); | |||||
shg2=4*xcorr(y2.^2,y2.^2)+4*xcorr(y2.^3,y2)+4*xcorr(y2,y2.^3); | |||||
dimt=length(t)-1; | |||||
SHG1=shg1(dimt/2:dimt*3/2); | |||||
SHG2=shg2(dimt/2:dimt*3/2); | |||||
MAC1=mac1(dimt/2:dimt*3/2); | |||||
MAC2=mac2(dimt/2:dimt*3/2); | |||||
figure(22) | |||||
plot(t,MAC1,t,MAC2) | |||||
figure(222) | |||||
plot(t,SHG1/max(SHG1),t,SHG2/max(SHG2)) | |||||
% filtro | |||||
A=fft(SHG1); | |||||
cut=400; | |||||
A(cut:end-cut)=SHG1(cut:end-cut)*0; | |||||
SHG1filter=real(ifft(A)); | |||||
figure(3) | |||||
% plot(t,SHG1/max(SHG1),t,SHG1filter/max(SHG1filter),SHGx,SHGy) | |||||
% plot(t,SHG1/max(SHG1)*4.5,t,SHG1filter/max(SHG1filter),'k',SHGx-0.1,SHGy,'r');xlim([-400 400]) | |||||
plot(t,SHG1filter/max(SHG1filter),'k');xlim([-400 400]) |
@ -0,0 +1,27 @@ | |||||
filedata='maggio11_1731'; | |||||
str=['load ' filedata '.dat'];eval(str); | |||||
str=['x=' filedata '(:,1);'];eval(str); | |||||
str=['y=' filedata '(:,2);'];eval(str); | |||||
filestr='Caf2_maggio11_1757_strum'; | |||||
str=['load ' filestr '.dat'];eval(str); | |||||
str=['xs=' filestr '(:,1);'];eval(str); | |||||
str=['ys=' filestr '(:,2);'];eval(str); | |||||
ys=ys/max(ys); | |||||
x0=-0.4; | |||||
ysI=interp1((xs+x0)*1,ys,x,'linear',0); | |||||
% t0=0; | |||||
% w=12; | |||||
% A=1 | |||||
% ysI=A*(exp(-2*log(2)*(x-t0).^2/w^2)); | |||||
figure(1) | |||||
semilogy(x,y,x,ysI); xlim([-100 100]);ylim([1e-5 2]) | |||||
f=(0:1:length(x)-1)*1/(length(x)-1)*1/((x(2)-x(1))*3e-5); | |||||
Rw=-imag(fft(y)./fft(ysI)); | |||||
figure(2) | |||||
plot(f,Rw,f,Rw*0);xlim([0 2000]);ylim([-0.05 3]) |
@ -0,0 +1,24 @@ | |||||
2016-05-11 17:36:47: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-11 17:36:47: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 17:36:47: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/benzene | |||||
2016-05-11 17:36:47: Sinistra: State file does not exist in mirror: /Users/lab20-2014/.goodsync/_mirrors_/-Volumes-Data-Torre_didattica-gruppo3-benzene/_file_state._gs | |||||
2016-05-11 17:36:47: Prepara un nuovo rapporto di stato Sinistra | |||||
2016-05-11 17:36:47: Sinistra: Documenti: 5 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-11 17:36:47: Destra: State file does not exist: /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/_gsdata_/_file_state._gs | |||||
2016-05-11 17:36:47: Prepara un nuovo rapporto di stato Destra | |||||
2016-05-11 17:36:47: Destra: Documenti: 0 (esclusi 0). Cartelle: 0 (escluse 0). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-11 17:36:47: Cambiamenti: 5, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-11 17:36:47: Left to Right: Copy File: 5 | |||||
2016-05-11 17:36:47: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-11 17:36:47: | |||||
2016-05-11 17:36:48: New _gsdata_ folder(s) created, so rescan all job folders for their ghosts | |||||
2016-05-11 17:36:48: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-11 17:36:48: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 17:36:49: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_1.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_1.dat' | |||||
2016-05-11 17:36:49: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_2.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_2.dat' | |||||
2016-05-11 17:36:49: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_3.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_3.dat' | |||||
2016-05-11 17:36:50: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_4.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_4.dat' | |||||
2016-05-11 17:36:50: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_5.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_5.dat' | |||||
2016-05-11 17:36:50: Oggetti sincronizzati: 5, Errori: 0 | |||||
2016-05-11 17:36:50: ===== Sincronizzazione completata. Durata: 00:00:02, Velocità: 8.1 MB/s (156.2 MB/s) ===== | |||||
2016-05-11 17:36:50: |
@ -0,0 +1,18 @@ | |||||
2016-05-11 17:44:21: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-11 17:44:21: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 17:44:21: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/benzene | |||||
2016-05-11 17:44:21: Sinistra: Documenti: 9 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-11 17:44:21: Destra: Documenti: 5 (esclusi 1). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-11 17:44:21: Cambiamenti: 4, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-11 17:44:21: Left to Right: Copy File: 4 | |||||
2016-05-11 17:44:21: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-11 17:44:21: | |||||
2016-05-11 17:44:23: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-11 17:44:23: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 17:44:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_6.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_6.dat' | |||||
2016-05-11 17:44:24: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_7.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_7.dat' | |||||
2016-05-11 17:44:24: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_8.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_8.dat' | |||||
2016-05-11 17:44:24: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_9.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_9.dat' | |||||
2016-05-11 17:44:24: Oggetti sincronizzati: 4, Errori: 0 | |||||
2016-05-11 17:44:24: ===== Sincronizzazione completata. Durata: 00:00:01, Velocità: 13.0 MB/s (125.0 MB/s) ===== | |||||
2016-05-11 17:44:24: |
@ -0,0 +1,15 @@ | |||||
2016-05-11 17:45:36: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-11 17:45:36: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 17:45:36: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/benzene | |||||
2016-05-11 17:45:36: Sinistra: Documenti: 10 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-11 17:45:36: Destra: Documenti: 9 (esclusi 1). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-11 17:45:36: Cambiamenti: 1, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-11 17:45:36: Left to Right: Copy File: 1 | |||||
2016-05-11 17:45:36: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-11 17:45:36: | |||||
2016-05-11 17:45:38: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-11 17:45:38: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 17:45:38: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/maggio11_1731_10.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/maggio11_1731_10.dat' | |||||
2016-05-11 17:45:38: Oggetti sincronizzati: 1, Errori: 0 | |||||
2016-05-11 17:45:38: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: 13.0 MB/s (125.0 MB/s) ===== | |||||
2016-05-11 17:45:38: |
@ -0,0 +1,18 @@ | |||||
2016-05-11 18:00:19: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-11 18:00:19: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 18:00:19: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/benzene | |||||
2016-05-11 18:00:19: Sinistra: Documenti: 13 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-11 18:00:19: Destra: Documenti: 11 (esclusi 1). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-11 18:00:19: Do Not Propagate Deletions: 1-way deletions reverted: 1 | |||||
2016-05-11 18:00:19: Cambiamenti: 3, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-11 18:00:19: Left to Right: Copy File: 3 | |||||
2016-05-11 18:00:19: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-11 18:00:19: | |||||
2016-05-11 18:00:21: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-11 18:00:21: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 18:00:22: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_1.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_1.dat' | |||||
2016-05-11 18:00:22: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_2.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_2.dat' | |||||
2016-05-11 18:00:22: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_3.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_3.dat' | |||||
2016-05-11 18:00:22: Oggetti sincronizzati: 3, Errori: 0 | |||||
2016-05-11 18:00:22: ===== Sincronizzazione completata. Durata: 00:00:01, Velocità: 3.4 MB/s (31.2 MB/s) ===== | |||||
2016-05-11 18:00:22: |
@ -0,0 +1,19 @@ | |||||
2016-05-11 18:07:24: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-11 18:07:24: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 18:07:24: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/benzene | |||||
2016-05-11 18:07:24: Sinistra: Documenti: 17 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-11 18:07:24: Destra: Documenti: 14 (esclusi 2). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-11 18:07:24: Do Not Propagate Deletions: 1-way deletions reverted: 1 | |||||
2016-05-11 18:07:24: Cambiamenti: 4, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-11 18:07:24: Left to Right: Copy File: 4 | |||||
2016-05-11 18:07:24: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-11 18:07:24: | |||||
2016-05-11 18:07:26: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-11 18:07:26: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 18:07:26: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_4.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_4.dat' | |||||
2016-05-11 18:07:27: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_5.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_5.dat' | |||||
2016-05-11 18:07:27: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_6.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_6.dat' | |||||
2016-05-11 18:07:27: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_7.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_7.dat' | |||||
2016-05-11 18:07:27: Oggetti sincronizzati: 4, Errori: 0 | |||||
2016-05-11 18:07:27: ===== Sincronizzazione completata. Durata: 00:00:01, Velocità: 4.6 MB/s (31.2 MB/s) ===== | |||||
2016-05-11 18:07:27: |
@ -0,0 +1,17 @@ | |||||
2016-05-11 18:09:55: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-11 18:09:55: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 18:09:55: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/benzene | |||||
2016-05-11 18:09:55: Sinistra: Documenti: 19 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-11 18:09:55: Destra: Documenti: 18 (esclusi 2). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-11 18:09:55: Do Not Propagate Deletions: 1-way deletions reverted: 1 | |||||
2016-05-11 18:09:55: Cambiamenti: 2, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-11 18:09:55: Left to Right: Copy File: 2 | |||||
2016-05-11 18:09:55: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-11 18:09:55: | |||||
2016-05-11 18:09:57: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-11 18:09:57: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 18:09:58: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_8.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_8.dat' | |||||
2016-05-11 18:09:58: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_9.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_9.dat' | |||||
2016-05-11 18:09:58: Oggetti sincronizzati: 2, Errori: 0 | |||||
2016-05-11 18:09:58: ===== Sincronizzazione completata. Durata: 00:00:01, Velocità: 2.3 MB/s (31.2 MB/s) ===== | |||||
2016-05-11 18:09:58: |
@ -0,0 +1,16 @@ | |||||
2016-05-11 18:11:32: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-11 18:11:32: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 18:11:32: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/benzene | |||||
2016-05-11 18:11:32: Sinistra: Documenti: 20 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-11 18:11:32: Destra: Documenti: 20 (esclusi 2). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-11 18:11:32: Do Not Propagate Deletions: 1-way deletions reverted: 1 | |||||
2016-05-11 18:11:32: Cambiamenti: 1, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-11 18:11:32: Left to Right: Copy File: 1 | |||||
2016-05-11 18:11:32: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-11 18:11:32: | |||||
2016-05-11 18:11:35: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-11 18:11:35: /Volumes/Data/Torre_didattica/gruppo3/benzene =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-11 18:11:35: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/benzene/caf2_maggio11_1757_10.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene/caf2_maggio11_1757_10.dat' | |||||
2016-05-11 18:11:35: Oggetti sincronizzati: 1, Errori: 0 | |||||
2016-05-11 18:11:35: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: 2.3 MB/s (31.2 MB/s) ===== | |||||
2016-05-11 18:11:35: |
@ -0,0 +1,2 @@ | |||||
By: New Job.lab20-2014@Lab20-2014’s Mac Pro at: 2016.05.11 18:11:35 +0000 | |||||
/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/benzene |
@ -0,0 +1,71 @@ | |||||
clear all | |||||
close all | |||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% fastP %%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
cut1=-6200;cut2=56700; | |||||
xMAX=8150; | |||||
xf=(cut1-xMAX:1:cut2-xMAX); | |||||
xcmfp=0; | |||||
xcmfm=0; | |||||
ymeanP=xf*0; | |||||
ymeanM=xf*0; | |||||
%%%%%%%%% legge i file con eterodina positiva fast %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
limBKGD=7200; | |||||
filecommon='maggio11_1731'; | |||||
figure(50) | |||||
fi=dir([filecommon '*']); | |||||
index1=[]; | |||||
index2=[]; | |||||
for kk=[1:10]; | |||||
index1=[index1,kk]; | |||||
kk | |||||
file=[filecommon '_' num2str(kk)]; | |||||
str=['load ' file '.dat'];eval(str); | |||||
str=['x=' file '(:,1);'];eval(str); | |||||
str=['y=' file '(:,2);'];eval(str); | |||||
str=['N=' file '(:,3);'];eval(str); | |||||
nn=find(x>cut1 & x<cut2);x=x(nn);y=y(nn); | |||||
nn=find(x<limBKGD);y=y-mean(y(nn)); %y=y/max(y); | |||||
[A,B]=butter(20,0.2,'low'); | |||||
yf=filter(A,B,y); | |||||
nn=find(yf>0.85*max(yf));xcm=sum(x(nn).*yf(nn))/sum(yf(nn));x=x-xcm; | |||||
y=interp1(x,yf,xf,'linear',NaN); | |||||
figure(333); | |||||
plot(xf,y);ylim([-0.02 0.02]) | |||||
ymeanP=ymeanP+y; | |||||
xcmfp=xcmfp+xcm; | |||||
str=['clear ' file ];eval(str); | |||||
figure(50); | |||||
hold on;plot(xf,y,'g'); | |||||
end | |||||
hold on | |||||
plot(xf,(ymeanM+ymeanP)/(length(index1)+length(index2)),'r'); | |||||
hold off | |||||
YY=(ymeanM+ymeanP)/(length(index1)+length(index2)); | |||||
jj=find(isnan(YY)==0); xfnew=xf(jj); Ynew=YY(jj); | |||||
jj=find(isnan(YY)==0); | |||||
figure(101) | |||||
xx=xf(jj)*0.52733333; yy=YY(jj)/max(YY(jj)); | |||||
plot(xx,yy) | |||||
nn1=find(xx<-1000); nn2=find(xx>22000); nn=[nn1 nn2]; P=polyfit(xx(nn),yy(nn),1); | |||||
Ybkg=polyval(P,xx); | |||||
figure(11) | |||||
subplot(2,1,1); semilogy(xx,yy-Ybkg,xx,yy) | |||||
subplot(2,1,2); plot(xx,yy,xx,Ybkg) | |||||
if 0, | |||||
AA=[xx' (yy-Ybkg)']; str=['save ' filecommon '.dat AA -ascii;'];eval(str); | |||||
end; | |||||
@ -0,0 +1,71 @@ | |||||
clear all | |||||
close all | |||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% fastP %%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
cut1=2700;cut2=18400; | |||||
xMAX=8154; | |||||
xf=(cut1-xMAX:1:cut2-xMAX); | |||||
xcmfp=0; | |||||
xcmfm=0; | |||||
ymeanP=xf*0; | |||||
ymeanM=xf*0; | |||||
%%%%%%%%% legge i file con eterodina positiva fast %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
limBKGD=7000; | |||||
filecommon='caf2_maggio11_1757'; | |||||
figure(50) | |||||
fi=dir([filecommon '*']); | |||||
index1=[]; | |||||
index2=[]; | |||||
for kk=[1:10]; | |||||
index1=[index1,kk]; | |||||
kk | |||||
file=[filecommon '_' num2str(kk)]; | |||||
str=['load ' file '.dat'];eval(str); | |||||
str=['x=' file '(:,1);'];eval(str); | |||||
str=['y=' file '(:,2);'];eval(str); | |||||
str=['N=' file '(:,3);'];eval(str); | |||||
nn=find(x>cut1 & x<cut2);x=x(nn);y=y(nn); | |||||
nn=find(x<limBKGD);y=y-mean(y(nn)); %y=y/max(y); | |||||
[A,B]=butter(20,0.2,'low'); | |||||
yf=filter(A,B,y); | |||||
nn=find(yf>0.85*max(yf));xcm=sum(x(nn).*yf(nn))/sum(yf(nn));x=x-xcm; | |||||
y=interp1(x,yf,xf,'linear',NaN); | |||||
figure(333); | |||||
plot(xf,y);ylim([-0.02 0.02]) | |||||
ymeanP=ymeanP+y; | |||||
xcmfp=xcmfp+xcm; | |||||
str=['clear ' file ];eval(str); | |||||
figure(50); | |||||
hold on;plot(xf,y,'g'); | |||||
end | |||||
hold on | |||||
plot(xf,(ymeanM+ymeanP)/(length(index1)+length(index2)),'r'); | |||||
hold off | |||||
YY=(ymeanM+ymeanP)/(length(index1)+length(index2)); | |||||
jj=find(isnan(YY)==0); xfnew=xf(jj); Ynew=YY(jj); | |||||
jj=find(isnan(YY)==0); | |||||
figure(101) | |||||
xx=xf(jj)*0.52733333; yy=YY(jj)/max(YY(jj)); | |||||
plot(xx,yy) | |||||
nn1=find(xx<-1000); nn2=find(xx>3000); nn=[nn1 nn2]; P=polyfit(xx(nn),yy(nn),1); | |||||
Ybkg=polyval(P,xx); | |||||
figure(11) | |||||
subplot(2,1,1); semilogy(xx,yy-Ybkg,xx,yy) | |||||
subplot(2,1,2); plot(xx,yy,xx,Ybkg) | |||||
if 0, | |||||
AA=[xx' (yy-Ybkg)']; str=['save ' filecommon '.dat AA -ascii;'];eval(str); | |||||
end; | |||||
@ -0,0 +1,3 @@ | |||||
%T Info1 Info2 Info3 FILE A11 A22 gamma11OMEGA11Ah1 tau11 tau21 t11 Ah2 tau12 tau22 t12 Ah3 tau13 tau23 t13 AL1 wL1 t21 AL2 wL2 t22 AL3 wL3 t23 Ag1 wg1 t31 Ag2 wg2 t32 Ag3 wg3 t33 I0 bkgd t0 | |||||
1 1 1 1 caf2_maggio11_1757 0.038942 0.0029639 7.5161 321.6844 0 0.70924 455.4249 -17.3062 0.13391 100 0.73655 -9.96 35.7555 3.4473 15.6432 13.3464 16.7432 11.4732 -11.2047 45.2641 9.6803 5.3927 1.2332 3.4233 11.6465 0 100 50 53.7465 13.1758 -2.1046 20 27.0323 -5.4163 25.592 0 0 | |||||
1 1 1 1 caf2_maggio11_1757 0.039005 0.0029833 7.5224 321.6818 0 0.70924 455.4249 -17.3062 0.049263 145.886 0.046943 -7.3774 24.288 4.0053 14.2238 15.2621 17.7799 10.9856 -11.3874 61.8958 11.1509 5.1347 2.8701 4.3931 11.6966 0 100 50 51.0007 12.5765 -2.7659 14.2499 24.4395 -9.0937 25.6022 0 0 |
@ -0,0 +1,37 @@ | |||||
3.9005462e-02 0.0000000e+00 1.0000000e+00 0.0000000e+00 | |||||
2.9833196e-03 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
7.5223817e+00 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
3.2168178e+02 0.0000000e+00 3.3000000e+02 3.1000000e+02 | |||||
0.0000000e+00 1.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
7.0923503e-01 1.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
4.5542492e+02 1.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
-1.7306158e+01 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
4.9263176e-02 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.4588599e+02 0.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
4.6942549e-02 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
-7.3774382e+00 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
2.4287952e+01 0.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
4.0053187e+00 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.4223816e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.5262129e+01 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
1.7779884e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.0985576e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
-1.1387424e+01 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
6.1895815e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.1150921e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
5.1347341e+00 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
2.8700772e+00 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
4.3930996e+00 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.1696641e+01 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
0.0000000e+00 1.0000000e+00 2.0000000e+01 0.0000000e+00 | |||||
1.0000000e+02 1.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
5.0000000e+01 1.0000000e+00 5.0000000e+01 -1.0000000e+02 | |||||
5.1000711e+01 0.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
1.2576455e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
-2.7658707e+00 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
1.4249871e+01 0.0000000e+00 5.0000000e+01 0.0000000e+00 | |||||
2.4439484e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
-9.0937429e+00 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
2.5602212e+01 0.0000000e+00 2.0000000e+03 0.0000000e+00 | |||||
0.0000000e+00 1.0000000e+00 1.0000000e+00 -1.0000000e+00 | |||||
0.0000000e+00 1.0000000e+00 1.0000000e+01 -1.0000000e+01 |
@ -0,0 +1,27 @@ | |||||
filedata='maggio13_1045'; | |||||
str=['load ' filedata '.dat'];eval(str); | |||||
str=['x=' filedata '(:,1);'];eval(str); | |||||
str=['y=' filedata '(:,2);'];eval(str); | |||||
filestr='caf2_maggio13_1134_strum'; | |||||
str=['load ' filestr '.dat'];eval(str); | |||||
str=['xs=' filestr '(:,1);'];eval(str); | |||||
str=['ys=' filestr '(:,2);'];eval(str); | |||||
ys=ys/max(ys); | |||||
x0=-0.4; | |||||
ysI=interp1((xs+x0)*1.0,ys,x,'linear',0); | |||||
% t0=0; | |||||
% w=12; | |||||
% A=1 | |||||
% ysI=A*(exp(-2*log(2)*(x-t0).^2/w^2)); | |||||
figure(1) | |||||
semilogy(x,y,x,ysI); xlim([-100 100]);ylim([1e-5 2]) | |||||
f=(0:1:length(x)-1)*1/(length(x)-1)*1/((x(2)-x(1))*3e-5); | |||||
Rw=-imag(fft(y)./fft(ysI)); | |||||
figure(2) | |||||
plot(f,Rw,f,Rw*0);xlim([0 2000]);ylim([-0.05 2]) |
@ -0,0 +1,27 @@ | |||||
filedata='maggio13_1045'; | |||||
str=['load ' filedata '.dat'];eval(str); | |||||
str=['x=' filedata '(:,1);'];eval(str); | |||||
str=['y=' filedata '(:,2);'];eval(str); | |||||
filestr='caf2_maggio13_1134_strum'; | |||||
str=['load ' filestr '.dat'];eval(str); | |||||
str=['xs=' filestr '(:,1);'];eval(str); | |||||
str=['ys=' filestr '(:,2);'];eval(str); | |||||
ys=ys/max(ys); | |||||
x0=-40; | |||||
ysI=interp1((xs+x0)*1.0,ys,x,'linear',0); | |||||
% t0=0; | |||||
% w=12; | |||||
% A=1 | |||||
% ysI=A*(exp(-2*log(2)*(x-t0).^2/w^2)); | |||||
figure(1) | |||||
semilogy(x,y,x,ysI); xlim([-100 100]);ylim([1e-5 2]) | |||||
f=(0:1:length(x)-1)*1/(length(x)-1)*1/((x(2)-x(1))*3e-5); | |||||
Rw=-imag(fft(y)./fft(ysI)); | |||||
figure(2) | |||||
plot(f,Rw,f,Rw*0);xlim([0 2000]);ylim([-0.05 2]) |
@ -0,0 +1,23 @@ | |||||
2016-05-13 11:35:33: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-13 11:35:33: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:35:33: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/ccl4 | |||||
2016-05-13 11:35:33: Sinistra: State file does not exist in mirror: /Users/lab20-2014/.goodsync/_mirrors_/-Volumes-Data-Torre_didattica-gruppo3-ccl4/_file_state._gs | |||||
2016-05-13 11:35:33: Prepara un nuovo rapporto di stato Sinistra | |||||
2016-05-13 11:35:33: Sinistra: Documenti: 13 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.0 GB, Totale: 297.7 GB | |||||
2016-05-13 11:35:33: Destra: State file does not exist: /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/_gsdata_/_file_state._gs | |||||
2016-05-13 11:35:33: Prepara un nuovo rapporto di stato Destra | |||||
2016-05-13 11:35:33: Destra: Documenti: 12 (esclusi 1). Cartelle: 0 (escluse 0). /dev/disk1s2 HFS, Liberi: 410.9 GB, Totale: 931.2 GB | |||||
2016-05-13 11:35:33: Do Not Propagate Deletions: 1-way deletions reverted: 1 | |||||
2016-05-13 11:35:33: Cambiamenti: 3, Conflitti: 0, Durata: 0, Stato: 0/10, Errori: 0 | |||||
2016-05-13 11:35:33: Left to Right: Copy File: 3 | |||||
2016-05-13 11:35:33: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-13 11:35:33: | |||||
2016-05-13 11:35:43: New _gsdata_ folder(s) created, so rescan all job folders for their ghosts | |||||
2016-05-13 11:35:43: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-13 11:35:43: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:35:43: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_1.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_1.dat' | |||||
2016-05-13 11:35:43: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_2.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_2.dat' | |||||
2016-05-13 11:35:43: Copia (sostituzione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/info.txt' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/info.txt' | |||||
2016-05-13 11:35:43: Oggetti sincronizzati: 13, Errori: 0 | |||||
2016-05-13 11:35:43: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: ===== | |||||
2016-05-13 11:35:43: |
@ -0,0 +1,16 @@ | |||||
2016-05-13 11:37:35: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-13 11:37:35: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:37:35: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/ccl4 | |||||
2016-05-13 11:37:35: Sinistra: Documenti: 14 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.0 GB, Totale: 297.7 GB | |||||
2016-05-13 11:37:35: Destra: Documenti: 14 (esclusi 2). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 410.9 GB, Totale: 931.2 GB | |||||
2016-05-13 11:37:35: Do Not Propagate Deletions: 1-way deletions reverted: 1 | |||||
2016-05-13 11:37:35: Cambiamenti: 1, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-13 11:37:35: Left to Right: Copy File: 1 | |||||
2016-05-13 11:37:35: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-13 11:37:35: | |||||
2016-05-13 11:37:36: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-13 11:37:36: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:37:36: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_3.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_3.dat' | |||||
2016-05-13 11:37:36: Oggetti sincronizzati: 1, Errori: 0 | |||||
2016-05-13 11:37:36: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: ===== | |||||
2016-05-13 11:37:36: |
@ -0,0 +1,17 @@ | |||||
2016-05-13 11:38:41: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-13 11:38:41: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:38:41: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/ccl4 | |||||
2016-05-13 11:38:41: Sinistra: Documenti: 15 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.0 GB, Totale: 297.7 GB | |||||
2016-05-13 11:38:41: Destra: Documenti: 15 (esclusi 2). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 410.9 GB, Totale: 931.2 GB | |||||
2016-05-13 11:38:41: Do Not Propagate Deletions: 1-way deletions reverted: 2 | |||||
2016-05-13 11:38:41: Cambiamenti: 2, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-13 11:38:41: Left to Right: Copy File: 2 | |||||
2016-05-13 11:38:41: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-13 11:38:41: | |||||
2016-05-13 11:38:54: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-13 11:38:54: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:38:54: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_2.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_2.dat' | |||||
2016-05-13 11:38:55: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_4.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_4.dat' | |||||
2016-05-13 11:38:55: Oggetti sincronizzati: 2, Errori: 0 | |||||
2016-05-13 11:38:55: ===== Sincronizzazione completata. Durata: 00:00:01, Velocità: 2.0 MB/s (31.2 MB/s) ===== | |||||
2016-05-13 11:38:55: |
@ -0,0 +1,17 @@ | |||||
2016-05-13 11:43:21: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-13 11:43:21: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:43:21: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/ccl4 | |||||
2016-05-13 11:43:21: Sinistra: Documenti: 17 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.0 GB, Totale: 297.7 GB | |||||
2016-05-13 11:43:21: Destra: Documenti: 16 (esclusi 3). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 410.9 GB, Totale: 931.2 GB | |||||
2016-05-13 11:43:21: Do Not Propagate Deletions: 1-way deletions reverted: 1 | |||||
2016-05-13 11:43:21: Cambiamenti: 2, Conflitti: 0, Durata: 0, Stato: 0/2, Errori: 0 | |||||
2016-05-13 11:43:21: Left to Right: Copy File: 2 | |||||
2016-05-13 11:43:21: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-13 11:43:21: | |||||
2016-05-13 11:43:24: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-13 11:43:24: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:43:24: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_5.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_5.dat' | |||||
2016-05-13 11:43:24: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_6.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_6.dat' | |||||
2016-05-13 11:43:24: Oggetti sincronizzati: 4, Errori: 0 | |||||
2016-05-13 11:43:24: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: 2.0 MB/s (31.2 MB/s) ===== | |||||
2016-05-13 11:43:24: |
@ -0,0 +1,17 @@ | |||||
2016-05-13 11:45:43: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-13 11:45:43: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:45:43: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/ccl4 | |||||
2016-05-13 11:45:43: Sinistra: Documenti: 19 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.0 GB, Totale: 297.7 GB | |||||
2016-05-13 11:45:43: Destra: Documenti: 18 (esclusi 3). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 410.9 GB, Totale: 931.2 GB | |||||
2016-05-13 11:45:43: Do Not Propagate Deletions: 1-way deletions reverted: 1 | |||||
2016-05-13 11:45:43: Cambiamenti: 2, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-13 11:45:43: Left to Right: Copy File: 2 | |||||
2016-05-13 11:45:43: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-13 11:45:43: | |||||
2016-05-13 11:45:44: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-13 11:45:44: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:45:44: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_7.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_7.dat' | |||||
2016-05-13 11:45:44: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_8.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_8.dat' | |||||
2016-05-13 11:45:44: Oggetti sincronizzati: 2, Errori: 0 | |||||
2016-05-13 11:45:44: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: 2.0 MB/s (31.2 MB/s) ===== | |||||
2016-05-13 11:45:44: |
@ -0,0 +1,17 @@ | |||||
2016-05-13 11:49:07: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-13 11:49:07: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:49:07: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/ccl4 | |||||
2016-05-13 11:49:07: Sinistra: Documenti: 21 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.0 GB, Totale: 297.7 GB | |||||
2016-05-13 11:49:07: Destra: Documenti: 20 (esclusi 3). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 410.9 GB, Totale: 931.2 GB | |||||
2016-05-13 11:49:07: Do Not Propagate Deletions: 1-way deletions reverted: 1 | |||||
2016-05-13 11:49:07: Cambiamenti: 2, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-13 11:49:07: Left to Right: Copy File: 2 | |||||
2016-05-13 11:49:07: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-13 11:49:07: | |||||
2016-05-13 11:49:09: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-13 11:49:09: /Volumes/Data/Torre_didattica/gruppo3/ccl4 =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-13 11:49:09: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_10.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_10.dat' | |||||
2016-05-13 11:49:09: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/ccl4/caf2_maggio13_1134_9.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4/caf2_maggio13_1134_9.dat' | |||||
2016-05-13 11:49:09: Oggetti sincronizzati: 2, Errori: 0 | |||||
2016-05-13 11:49:09: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: 2.0 MB/s (31.2 MB/s) ===== | |||||
2016-05-13 11:49:09: |
@ -0,0 +1,2 @@ | |||||
By: New Job.lab20-2014@Lab20-2014’s Mac Pro at: 2016.05.13 11:49:09 +0000 | |||||
/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/ccl4 |
@ -0,0 +1,71 @@ | |||||
clear all | |||||
close all | |||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% fastP %%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
cut1=-6000;cut2=31200; | |||||
xMAX=8182; | |||||
xf=(cut1-xMAX:1:cut2-xMAX); | |||||
xcmfp=0; | |||||
xcmfm=0; | |||||
ymeanP=xf*0; | |||||
ymeanM=xf*0; | |||||
%%%%%%%%% legge i file con eterodina positiva fast %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
limBKGD=7200; | |||||
filecommon='maggio13_1045'; | |||||
figure(50) | |||||
fi=dir([filecommon '*']); | |||||
index1=[]; | |||||
index2=[]; | |||||
for kk=[1:10]; | |||||
index1=[index1,kk]; | |||||
kk | |||||
file=[filecommon '_' num2str(kk)]; | |||||
str=['load ' file '.dat'];eval(str); | |||||
str=['x=' file '(:,1);'];eval(str); | |||||
str=['y=' file '(:,2);'];eval(str); | |||||
str=['N=' file '(:,3);'];eval(str); | |||||
nn=find(x>cut1 & x<cut2);x=x(nn);y=y(nn); | |||||
nn=find(x<limBKGD);y=y-mean(y(nn)); %y=y/max(y); | |||||
[A,B]=butter(20,0.2,'low'); | |||||
yf=filter(A,B,y); | |||||
nn=find(yf>0.85*max(yf));xcm=sum(x(nn).*yf(nn))/sum(yf(nn));x=x-xcm; | |||||
y=interp1(x,yf,xf,'linear',NaN); | |||||
figure(333); | |||||
plot(xf,y);ylim([-0.02 0.02]) | |||||
ymeanP=ymeanP+y; | |||||
xcmfp=xcmfp+xcm; | |||||
str=['clear ' file ];eval(str); | |||||
figure(50); | |||||
hold on;plot(xf,y,'g'); | |||||
end | |||||
hold on | |||||
plot(xf,(ymeanM+ymeanP)/(length(index1)+length(index2)),'r'); | |||||
hold off | |||||
YY=(ymeanM+ymeanP)/(length(index1)+length(index2)); | |||||
jj=find(isnan(YY)==0); xfnew=xf(jj); Ynew=YY(jj); | |||||
jj=find(isnan(YY)==0); | |||||
figure(101) | |||||
xx=xf(jj)*0.52733333; yy=YY(jj)/max(YY(jj)); | |||||
plot(xx,yy) | |||||
nn1=find(xx<-1000); nn2=find(xx>7000); nn=[nn1 nn2]; P=polyfit(xx(nn),yy(nn),1); | |||||
Ybkg=polyval(P,xx); | |||||
figure(11) | |||||
subplot(2,1,1); semilogy(xx,yy-Ybkg,xx,yy) | |||||
subplot(2,1,2); plot(xx,yy,xx,Ybkg) | |||||
if 0, | |||||
AA=[xx' (yy-Ybkg)']; str=['save ' filecommon '.dat AA -ascii;'];eval(str); | |||||
end; | |||||
@ -0,0 +1,71 @@ | |||||
clear all | |||||
close all | |||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% fastP %%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
cut1=2700;cut2=18400; | |||||
xMAX=8176; | |||||
xf=(cut1-xMAX:1:cut2-xMAX); | |||||
xcmfp=0; | |||||
xcmfm=0; | |||||
ymeanP=xf*0; | |||||
ymeanM=xf*0; | |||||
%%%%%%%%% legge i file con eterodina positiva fast %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
limBKGD=7000; | |||||
filecommon='caf2_maggio13_1134'; | |||||
figure(50) | |||||
fi=dir([filecommon '*']); | |||||
index1=[]; | |||||
index2=[]; | |||||
for kk=[1 3:10]; | |||||
index1=[index1,kk]; | |||||
kk | |||||
file=[filecommon '_' num2str(kk)]; | |||||
str=['load ' file '.dat'];eval(str); | |||||
str=['x=' file '(:,1);'];eval(str); | |||||
str=['y=' file '(:,2);'];eval(str); | |||||
str=['N=' file '(:,3);'];eval(str); | |||||
nn=find(x>cut1 & x<cut2);x=x(nn);y=y(nn); | |||||
nn=find(x<limBKGD);y=y-mean(y(nn)); %y=y/max(y); | |||||
[A,B]=butter(20,0.2,'low'); | |||||
yf=filter(A,B,y); | |||||
nn=find(yf>0.85*max(yf));xcm=sum(x(nn).*yf(nn))/sum(yf(nn));x=x-xcm; | |||||
y=interp1(x,yf,xf,'linear',NaN); | |||||
figure(333); | |||||
plot(xf,y);ylim([-0.02 0.02]) | |||||
ymeanP=ymeanP+y; | |||||
xcmfp=xcmfp+xcm; | |||||
str=['clear ' file ];eval(str); | |||||
figure(50); | |||||
hold on;plot(xf,y,'g'); | |||||
end | |||||
hold on | |||||
plot(xf,(ymeanM+ymeanP)/(length(index1)+length(index2)),'r'); | |||||
hold off | |||||
YY=(ymeanM+ymeanP)/(length(index1)+length(index2)); | |||||
jj=find(isnan(YY)==0); xfnew=xf(jj); Ynew=YY(jj); | |||||
jj=find(isnan(YY)==0); | |||||
figure(101) | |||||
xx=xf(jj)*0.52733333; yy=YY(jj)/max(YY(jj)); | |||||
plot(xx,yy) | |||||
nn1=find(xx<-1000); nn2=find(xx>3000); nn=[nn1 nn2]; P=polyfit(xx(nn),yy(nn),1); | |||||
Ybkg=polyval(P,xx); | |||||
figure(11) | |||||
subplot(2,1,1); semilogy(xx,yy-Ybkg,xx,yy) | |||||
subplot(2,1,2); plot(xx,yy,xx,Ybkg) | |||||
if 0, | |||||
AA=[xx' (yy-Ybkg)']; str=['save ' filecommon '.dat AA -ascii;'];eval(str); | |||||
end; | |||||
@ -0,0 +1,37 @@ | |||||
4.2748687e-02 0.0000000e+00 1.0000000e+00 0.0000000e+00 | |||||
3.1788885e-03 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
7.5321502e+00 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
3.2166966e+02 0.0000000e+00 3.3000000e+02 3.1000000e+02 | |||||
0.0000000e+00 1.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
7.0923503e-01 1.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
4.5542492e+02 1.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
-1.7306158e+01 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
5.1001924e-02 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.4035656e+02 0.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
8.1628833e-03 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
-6.2206177e+00 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
3.6234578e+01 0.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
2.9740766e+00 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.6525344e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.4669598e+01 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
1.2550705e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.2923197e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
-1.3216224e+01 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
6.0313278e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
1.2388735e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
4.1612548e+00 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
1.2126881e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
6.9735739e+00 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
8.6885032e+00 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
0.0000000e+00 1.0000000e+00 2.0000000e+01 0.0000000e+00 | |||||
1.0000000e+02 1.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
5.0000000e+01 1.0000000e+00 5.0000000e+01 -1.0000000e+02 | |||||
6.3769479e+01 0.0000000e+00 1.0000000e+03 0.0000000e+00 | |||||
1.5720053e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
-3.1910144e+00 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
1.4170006e+01 0.0000000e+00 5.0000000e+01 0.0000000e+00 | |||||
2.5827737e+01 0.0000000e+00 1.0000000e+02 0.0000000e+00 | |||||
-7.9724349e+00 0.0000000e+00 1.0000000e+02 -1.0000000e+02 | |||||
2.6615383e+01 0.0000000e+00 2.0000000e+03 0.0000000e+00 | |||||
0.0000000e+00 1.0000000e+00 1.0000000e+00 -1.0000000e+00 | |||||
0.0000000e+00 1.0000000e+00 1.0000000e+01 -1.0000000e+01 |
@ -0,0 +1,11 @@ | |||||
CCl6 | |||||
Traslation Stage | |||||
Scansione 287.5 290.5 | |||||
Acquisizione -0.7 2.7 (0=288) | |||||
step/nm=79.1 | |||||
CaF2 | |||||
Traslation Stage | |||||
Scansione 288.2 289.5 | |||||
Acquisizione 0 1.7 (0=288) | |||||
step/nm=79.1 |
@ -0,0 +1,2 @@ | |||||
%T Info1 Info2 Info3 FILE A11 A22 gamma11OMEGA11Ah1 tau11 tau21 t11 Ah2 tau12 tau22 t12 Ah3 tau13 tau23 t13 AL1 wL1 t21 AL2 wL2 t22 AL3 wL3 t23 Ag1 wg1 t31 Ag2 wg2 t32 Ag3 wg3 t33 I0 bkgd t0 | |||||
1 1 1 1 caf2_maggio13_1134 0.042749 0.0031789 7.5322 321.6697 0 0.70924 455.4249 -17.3062 0.051002 140.3566 0.0081629 -6.2206 36.2346 2.9741 16.5253 14.6696 12.5507 12.9232 -13.2162 60.3133 12.3887 4.1613 12.1269 6.9736 8.6885 0 100 50 63.7695 15.7201 -3.191 14.17 25.8277 -7.9724 26.6154 0 0 |
@ -0,0 +1,123 @@ | |||||
clear all | |||||
file='spettrolaserG3'; | |||||
str=['load ' file '.txt'];eval(str); | |||||
str=['Ls=1e-3*' file '(:,1);'];eval(str); | |||||
str=['spec=' file '(:,2);'];eval(str); | |||||
file='ca2f_maggio10_1725'; | |||||
str=['load ' file '.dat'];eval(str); | |||||
str=['SHGx=' file '(:,1);'];eval(str); | |||||
str=['SHGy=' file '(:,2);'];eval(str); | |||||
t=(-1000:0.1:1000);% fs | |||||
Dt=13; % fs | |||||
Dw=0.441/Dt*2*pi; | |||||
c=0.3; %micron/fs | |||||
lambda0=0.795; %lunghezza d'onda centrale in micron | |||||
w0=2*pi*c/lambda0;%pulsazione centrale in fs^-1 | |||||
kk=1; | |||||
w=(w0-w0/kk:1e-4*2*pi:w0+w0/kk);% fs^-1 | |||||
nn=find(Ls<0.6);spec=spec-mean(spec(nn));spec=spec/max(spec); | |||||
specI=interp1(c./Ls*2*pi,spec,w,'linear',0); | |||||
specI2=exp(-4*log(2)*(w-w0).^2/Dw^2); | |||||
figure(1) | |||||
plot(w,specI,'.',w,specI2,'.') | |||||
L=0; %micron | |||||
% %silica | |||||
n0=1.453;%indice di rifrazione | |||||
d1nl=-0.01728;%derivata prima di n in lambda micron^-1 | |||||
d2nl=0.03988; %derivata seconda di n in lambda micron^-2 | |||||
d3nl=-0.2388; %derivata terza di n in lambda micron^-3 | |||||
% % BK7 | |||||
% n0=1.511;%indice di rifrazione | |||||
% d1nl=-0.01456;%derivata prima di n in lambda micron^-1 | |||||
% d2nl=0.05589; %derivata seconda di n in lambda micron^-2 | |||||
% d3nl=-0.2877; %derivata terza di n in lambda micron^-3 | |||||
% % CaF2 | |||||
% n0=1.4306; | |||||
% d1nl=-0.0104; | |||||
% d2nl=0.0304; | |||||
% d3nl=-0.1662; | |||||
% % Calcite ordinario | |||||
% n0=1.6488; | |||||
% d1nl=-0.031048300320746; | |||||
% d2nl=0.081657209660690; | |||||
% d3nl=-0.476683581496218; | |||||
% % Calcite straordinario | |||||
% n0=1.481916136599520; | |||||
% d1nl=-0.012620442731315; | |||||
% d2nl=0.044786681918652; | |||||
% d3nl=-0.232969865621158; | |||||
% | |||||
% % Benzene | |||||
% n0=1.485267310086479; | |||||
% d1nl=-0.029582350419277; | |||||
% d2nl=0.115024263003249; | |||||
% d3nl=-0.609046368893473; | |||||
d1nw=-lambda0^2/2/pi/c*d1nl; %derivata prima indice di rifrazione in funzione di w fs^-1 | |||||
d2nw=lambda0^3/4/pi^2/c^2*(2*d1nl+lambda0*d2nl); %derivata seconta indice di rifrazione in funzione di w fs^-2 | |||||
d3nw=-lambda0^4/8/pi^3/c^3*(6*d1nl+6*lambda0*d2nl+lambda0^2*d3nl); %derivata terza indice di rifrazione in funzione di w fs^-3 | |||||
phi0=n0*w0*L/c; | |||||
phi1=L/c*(n0+w0*d1nw); | |||||
phi2=L/c*(2*d1nw+w0*d2nw); | |||||
phi3=L/c*(3*d2nw+w0*d3nw); | |||||
dim=length(w); | |||||
A=sqrt(specI); | |||||
y1=t*0; | |||||
AA=w*0; | |||||
phi=w*0; | |||||
tic | |||||
for i=1:1:dim | |||||
phi(i)=0*phi0+0*phi1*(w(i)-w0)+phi2*(w(i)-w0).^2/2+phi3*(w(i)-w0).^3/6; | |||||
y1=A(i)*cos(w(i)*t-phi(i))+y1; | |||||
AA(i)=A(i); | |||||
i | |||||
end | |||||
toc | |||||
if 0 | |||||
pp=find(t>-300 & t<300);ss=y1(pp); | |||||
nn=find(diff(ss)<=0);ss(nn)=0; | |||||
mm=find(diff(ss)>0);ss(mm)=1; | |||||
gg=find(diff(ss)>0);jj=diff(t(gg)); | |||||
plot(jj*2) | |||||
end | |||||
figure(2) | |||||
plot(t,y1) | |||||
shg1=4*xcorr(y1.^2,y1.^2)+1*(4*xcorr(y1.^3,y1)+4*xcorr(y1,y1.^3)); | |||||
dimt=length(t)-1; | |||||
SHG1=shg1(dimt/2:dimt*3/2); | |||||
% figure(2) | |||||
% plot(t,SHG1/max(SHG1),t,exp(-4*log(2)*t.^2/(2^0.5*Dt)^2)) | |||||
% filtro | |||||
A=fft(SHG1); | |||||
cut=400; | |||||
A(cut:end-cut)=SHG1(cut:end-cut)*0; | |||||
SHG1filter=real(ifft(A)); | |||||
figure(3) | |||||
% plot(t,SHG1/max(SHG1),t,SHG1filter/max(SHG1filter),SHGx,SHGy) | |||||
% plot(t,SHG1/max(SHG1)*4.5,t,SHG1filter/max(SHG1filter),'k',SHGx-0.1,SHGy,'r');xlim([-400 400]) | |||||
plot(t,SHG1filter/max(SHG1filter),'k',SHGx,SHGy,'r');xlim([-400 400]) |
@ -0,0 +1,71 @@ | |||||
clear all | |||||
close all | |||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% fastP %%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
cut1=3770;cut2=11250; | |||||
xMAX=8135; | |||||
xf=(cut1-xMAX:1:cut2-xMAX); | |||||
xcmfp=0; | |||||
xcmfm=0; | |||||
ymeanP=xf*0; | |||||
ymeanM=xf*0; | |||||
%%%%%%%%% legge i file con eterodina positiva fast %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |||||
limBKGD=7800; | |||||
filecommon='sio2_maggio10_1736'; | |||||
figure(50) | |||||
fi=dir([filecommon '*']); | |||||
index1=[]; | |||||
index2=[]; | |||||
for kk=[1:7]; | |||||
index1=[index1,kk]; | |||||
kk | |||||
file=[filecommon '_' num2str(kk)]; | |||||
str=['load ' file '.dat'];eval(str); | |||||
str=['x=' file '(:,1);'];eval(str); | |||||
str=['y=' file '(:,2);'];eval(str); | |||||
str=['N=' file '(:,3);'];eval(str); | |||||
nn=find(x>cut1 & x<cut2);x=x(nn);y=y(nn); | |||||
nn=find(x<limBKGD);y=y-mean(y(nn)); %y=y/max(y); | |||||
[A,B]=butter(20,0.2,'low'); | |||||
yf=filter(A,B,y); | |||||
nn=find(yf>0.85*max(yf));xcm=sum(x(nn).*yf(nn))/sum(yf(nn));x=x-xcm; | |||||
y=interp1(x,yf,xf,'linear',NaN); | |||||
figure(333); | |||||
plot(xf,y);ylim([-0.02 0.02]) | |||||
ymeanP=ymeanP+y; | |||||
xcmfp=xcmfp+xcm; | |||||
str=['clear ' file ];eval(str); | |||||
figure(50); | |||||
hold on;plot(xf,y,'g'); | |||||
end | |||||
hold on | |||||
plot(xf,(ymeanM+ymeanP)/(length(index1)+length(index2)),'r'); | |||||
hold off | |||||
YY=(ymeanM+ymeanP)/(length(index1)+length(index2)); | |||||
jj=find(isnan(YY)==0); xfnew=xf(jj); Ynew=YY(jj); | |||||
jj=find(isnan(YY)==0); | |||||
figure(101) | |||||
xx=xf(jj)*0.52733333; yy=YY(jj)/max(YY(jj)); | |||||
plot(xx,yy) | |||||
nn1=find(xx<-500); nn2=find(xx>500); nn=[nn1 nn2]; P=polyfit(xx(nn),yy(nn),1); | |||||
Ybkg=polyval(P,xx); | |||||
figure(11) | |||||
subplot(2,1,1); semilogy(xx,yy-Ybkg,xx,yy) | |||||
subplot(2,1,2); plot(xx,yy,xx,Ybkg) | |||||
if 0, | |||||
AA=[xx' (yy-Ybkg)']; str=['save ' filecommon '.dat AA -ascii;'];eval(str); | |||||
end; | |||||
@ -0,0 +1,22 @@ | |||||
2016-05-10 16:02:02: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-10 16:02:02: /Volumes/Data-1/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 16:02:02: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data-1/Torre_didattica/gruppo3/shg | |||||
2016-05-10 16:02:02: Sinistra: State file does not exist in mirror: /Users/lab20-2014/.goodsync/_mirrors_/-Volumes-Data-1-Torre_didattica-gruppo3-shg/_file_state._gs | |||||
2016-05-10 16:02:02: Prepara un nuovo rapporto di stato Sinistra | |||||
2016-05-10 16:02:02: Sinistra: Documenti: 3 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-10 16:02:02: Destra: State file does not exist: /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/_gsdata_/_file_state._gs | |||||
2016-05-10 16:02:02: Prepara un nuovo rapporto di stato Destra | |||||
2016-05-10 16:02:02: Destra: Documenti: 0 (esclusi 0). Cartelle: 0 (escluse 0). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-10 16:02:02: Cambiamenti: 3, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-10 16:02:02: Left to Right: Copy File: 3 | |||||
2016-05-10 16:02:02: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-10 16:02:02: | |||||
2016-05-10 16:02:09: New _gsdata_ folder(s) created, so rescan all job folders for their ghosts | |||||
2016-05-10 16:02:09: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-10 16:02:09: /Volumes/Data-1/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 16:02:09: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/10maggio_1557_1.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/10maggio_1557_1.dat' | |||||
2016-05-10 16:02:09: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/10maggio_1557_2.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/10maggio_1557_2.dat' | |||||
2016-05-10 16:02:09: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/10maggio_1557_3.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/10maggio_1557_3.dat' | |||||
2016-05-10 16:02:09: Oggetti sincronizzati: 3, Errori: 0 | |||||
2016-05-10 16:02:09: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: 9.6 MB/s (406.2 MB/s) ===== | |||||
2016-05-10 16:02:09: |
@ -0,0 +1,17 @@ | |||||
2016-05-10 16:06:27: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-10 16:06:27: /Volumes/Data-1/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 16:06:27: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data-1/Torre_didattica/gruppo3/shg | |||||
2016-05-10 16:06:27: Sinistra: Documenti: 6 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-10 16:06:27: Destra: Documenti: 3 (esclusi 1). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-10 16:06:27: Cambiamenti: 3, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-10 16:06:27: Left to Right: Copy File: 3 | |||||
2016-05-10 16:06:27: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-10 16:06:27: | |||||
2016-05-10 16:06:32: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-10 16:06:32: /Volumes/Data-1/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 16:06:32: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/10maggio_1557_4.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/10maggio_1557_4.dat' | |||||
2016-05-10 16:06:32: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/10maggio_1557_5.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/10maggio_1557_5.dat' | |||||
2016-05-10 16:06:32: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/10maggio_1557_6.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/10maggio_1557_6.dat' | |||||
2016-05-10 16:06:32: Oggetti sincronizzati: 3, Errori: 0 | |||||
2016-05-10 16:06:32: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: 9.6 MB/s (406.2 MB/s) ===== | |||||
2016-05-10 16:06:32: |
@ -0,0 +1,25 @@ | |||||
2016-05-10 16:16:31: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-10 16:16:31: /Volumes/Data-1/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 16:16:31: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data-1/Torre_didattica/gruppo3/shg | |||||
2016-05-10 16:16:31: Sinistra: Documenti: 11 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-10 16:16:31: Destra: Documenti: 0 (esclusi 2). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-10 16:16:31: Cambiamenti: 11, Conflitti: 0, Durata: 0, Stato: 0/6, Errori: 0 | |||||
2016-05-10 16:16:31: Left to Right: Copy File: 11 | |||||
2016-05-10 16:16:31: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-10 16:16:31: | |||||
2016-05-10 16:16:42: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-10 16:16:42: /Volumes/Data-1/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 16:16:42: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_1.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_1.dat' | |||||
2016-05-10 16:16:42: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_10.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_10.dat' | |||||
2016-05-10 16:16:42: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_11.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_11.dat' | |||||
2016-05-10 16:16:43: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_2.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_2.dat' | |||||
2016-05-10 16:16:43: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_3.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_3.dat' | |||||
2016-05-10 16:16:43: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_4.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_4.dat' | |||||
2016-05-10 16:16:43: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_5.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_5.dat' | |||||
2016-05-10 16:16:43: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_6.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_6.dat' | |||||
2016-05-10 16:16:43: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_7.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_7.dat' | |||||
2016-05-10 16:16:43: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_8.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_8.dat' | |||||
2016-05-10 16:16:43: Copia (creazione) '/Volumes/Data-1/Torre_didattica/gruppo3/shg/maggio10_1557_9.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/maggio10_1557_9.dat' | |||||
2016-05-10 16:16:43: Oggetti sincronizzati: 17, Errori: 0 | |||||
2016-05-10 16:16:43: ===== Sincronizzazione completata. Durata: 00:00:01, Velocità: 4.3 MB/s (2.2 MB/s) ===== | |||||
2016-05-10 16:16:43: |
@ -0,0 +1,19 @@ | |||||
2016-05-10 17:26:07: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-10 17:26:07: /Volumes/Data/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 17:26:07: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/shg | |||||
2016-05-10 17:26:07: Sinistra: State file does not exist in mirror: /Users/lab20-2014/.goodsync/_mirrors_/-Volumes-Data-Torre_didattica-gruppo3-shg/_file_state._gs | |||||
2016-05-10 17:26:07: Prepara un nuovo rapporto di stato Sinistra | |||||
2016-05-10 17:26:07: Sinistra: Documenti: 13 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-10 17:26:08: Destra: Documenti: 13 (esclusi 2). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-10 17:26:08: Do Not Propagate Deletions: 1-way deletions reverted: 2 | |||||
2016-05-10 17:26:08: Cambiamenti: 2, Conflitti: 0, Durata: 0, Stato: 17/0, Errori: 0 | |||||
2016-05-10 17:26:08: Left to Right: Copy File: 2 Copy State: 17 | |||||
2016-05-10 17:26:08: ----- Analisi completa. Durata 00:00:01, Velocità: 18 documenti/s ----- | |||||
2016-05-10 17:26:08: | |||||
2016-05-10 17:26:10: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-10 17:26:10: /Volumes/Data/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 17:26:10: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/caf2_maggio10_1725_1.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/caf2_maggio10_1725_1.dat' | |||||
2016-05-10 17:26:10: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/caf2_maggio10_1725_2.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/caf2_maggio10_1725_2.dat' | |||||
2016-05-10 17:26:10: Oggetti sincronizzati: 19, Errori: 0 | |||||
2016-05-10 17:26:10: ===== Sincronizzazione completata. Durata: 00:00:00, Velocità: ===== | |||||
2016-05-10 17:26:10: |
@ -0,0 +1,25 @@ | |||||
2016-05-10 17:47:18: ----- Operazione 'New Job': ANALISI iniziata da User sul computer 'Lab20-2014’s Mac Pro' (GoodSync v 4.2.2.2) ----- | |||||
2016-05-10 17:47:18: /Volumes/Data/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 17:47:18: Do not check-lock folder that cannot have _gsdata_: /Volumes/Data/Torre_didattica/gruppo3/shg | |||||
2016-05-10 17:47:18: Sinistra: Documenti: 23 (esclusi 0). Cartelle: 0 (escluse 0). //Oke@150.217.157.55/Data SMBFS, Liberi: 254.4 GB, Totale: 297.7 GB | |||||
2016-05-10 17:47:18: Destra: Documenti: 16 (esclusi 3). Cartelle: 0 (escluse 1). /dev/disk1s2 HFS, Liberi: 411.0 GB, Totale: 931.2 GB | |||||
2016-05-10 17:47:18: Do Not Propagate Deletions: 1-way deletions reverted: 3 | |||||
2016-05-10 17:47:18: Cambiamenti: 10, Conflitti: 0, Durata: 0, Stato: 0/0, Errori: 0 | |||||
2016-05-10 17:47:18: Left to Right: Copy File: 10 | |||||
2016-05-10 17:47:18: ----- Analisi completa. Durata 00:00:00, Velocità: Many documenti/s ----- | |||||
2016-05-10 17:47:18: | |||||
2016-05-10 17:47:22: ===== Operazione 'New Job': Sincronizzazione iniziata da User sul computer 'Lab20-2014’s Mac Pro' ===== | |||||
2016-05-10 17:47:22: /Volumes/Data/Torre_didattica/gruppo3/shg =NoPropDels=> /Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg, ReadOnlySrc, WaitForLocksMinutes=20 | |||||
2016-05-10 17:47:22: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/caf2_maggio10_1725_3.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/caf2_maggio10_1725_3.dat' | |||||
2016-05-10 17:47:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/caf2_maggio10_1725_4.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/caf2_maggio10_1725_4.dat' | |||||
2016-05-10 17:47:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/caf2_maggio10_1725_5.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/caf2_maggio10_1725_5.dat' | |||||
2016-05-10 17:47:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/sio2_maggio10_1736_1.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/sio2_maggio10_1736_1.dat' | |||||
2016-05-10 17:47:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/sio2_maggio10_1736_2.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/sio2_maggio10_1736_2.dat' | |||||
2016-05-10 17:47:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/sio2_maggio10_1736_3.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/sio2_maggio10_1736_3.dat' | |||||
2016-05-10 17:47:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/sio2_maggio10_1736_4.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/sio2_maggio10_1736_4.dat' | |||||
2016-05-10 17:47:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/sio2_maggio10_1736_5.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/sio2_maggio10_1736_5.dat' | |||||
2016-05-10 17:47:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/sio2_maggio10_1736_6.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/sio2_maggio10_1736_6.dat' | |||||
2016-05-10 17:47:23: Copia (creazione) '/Volumes/Data/Torre_didattica/gruppo3/shg/sio2_maggio10_1736_7.dat' -> '/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg/sio2_maggio10_1736_7.dat' | |||||
2016-05-10 17:47:23: Oggetti sincronizzati: 10, Errori: 0 | |||||
2016-05-10 17:47:23: ===== Sincronizzazione completata. Durata: 00:00:01, Velocità: 3.9 MB/s (62.5 MB/s) ===== | |||||
2016-05-10 17:47:23: |
@ -0,0 +1,2 @@ | |||||
By: New Job.lab20-2014@Lab20-2014’s Mac Pro at: 2016.05.10 17:47:22 +0000 | |||||
/Volumes/HDD-1TB/Femto1_sync/Dati/Torre_ditattica/gruppo3/shg |